Search Issue Tracker
By Design
Votes
0
Found in
2023.3.0f1
Issue ID
UUM-65120
Regression
No
Cannot delayed opening context menu
It is currently not possible to open a context menu during a VisualElement.schedule.Execute(). There are some use cases where we have to delay the opening of a context menu in order to ensure mouse events and focus changed were processed.
For instance, if you want to show a context menu on a TreeView/ListView. Because on MacOS, context menus are shown on MouseDown, the ContextMenu manipulator would catch the mouse event because the TreeView/ListView, which means it would try to open a menu before the TreeView's selection is changed. In such case, one of the solution would be to delay the context menu.
Steps to reproduce:
1.
2.
3.
Actual results:
Expected results:
Reproducible with versions:
Not reproducible with versions:
Can’t test with versions:
Tested on (OS):
Notes:
Add comment
All about bugs
View bugs we have successfully reproduced, and vote for the bugs you want to see fixed most urgently.
Latest issues
- Weight Brush Overlay text is clipped in Sprite Editor
- GameObject Transform scale values reset to their previously saved values when proportions are constrained and certain decimal values are entered in the Inspector
- Asset thumbnails in the Project window stay white when a referenced texture file is deleted and restored
- Crash on PersistentManager::ReadObjectThreaded when calling AssetDatabase.ForceReserializeAssets() multiple times in a row
- Scene becomes dirty when first opening an HDRP Template project
Resolution Note:
This is as designed. The contextual menu event needs to be tied to a pointer event, so it needs to happen right away.
Any alternate logic can be done in scheduled items by creating a DropdownMenu manually instead of using events.