Search Issue Tracker
Fixed
Fixed in 2021.3.38f1, 2022.3.26f1, 2023.2.20f1, 6000.0.0b15, 7000.0.0a1
Votes
1
Found in
2023.3.0b6
6000.0.0b11
7000.0.0a1
Issue ID
UUM-62774
Regression
No
"AutoFill"menu item is presented in "Edit"
Steps to reproduce:
- Create a 3D project
- Go to the "Edit" menu item on the Mac
- Observe that the first submenu is "AutoFill"
Actual results: The "AutoFill" menu is presented and accessible.
Expected results: The "AutoFill" menu should be hidden according to https://jira.unity3d.com/browse/UUM-59472.
Reproducible with versions: 2021.3.33f1, 2022.3.19f1, 2023.2.9f1, 2023.3.0b6.
Not reproducible with versions: -
Can’t test with versions: -
Tested on (OS): Mac, Sonoma 14.2.1
Comments (1)
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
- Mono Windows Builds don't produce full log callstacks when generating logs
- AssetBundles fail to load when running in Built Players for Mobile Devices
- UI elements with text gets bigger and grey when Player window is moved to another screen with different resolution
- System name accepts multiline text but crops it on confirmation, duplicates input, and shrinks the field when empty
- UI element scale and position are wrong in project build when DRS is changed with HDR and Software Dynamic Resolution enabled
amamaenko
Apr 03, 2024 12:44
I have related issue in Unity 2021.3.35f1 on Sonoma 14.4.1
I see multiple scenarios of context menus include Auto-Fill item.
Steps to Reproduce 1
- Create any project
- Right click on scene item
- Observe last item is Auto-Fill
Steps to Reproduce 2
- Create any project
- Right click on project item
- Observe last item is Auto-Fill
Steps to Reproduce 3
- Implement custom editor using EditorWindow subclass (IMGUI)
- Following snippet will display a Context Menu with Auto-fill item at the end:
GenericMenu menu = new GenericMenu();
menu.AddItem(new GUIContent("Hello world0"), false, MyFunc, null);
menu.ShowAsContext();