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
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
- Progress indicator in Meta Quest Build Profile configuration is barely visible
- Slightly transparent objects disappear completely in Web Player when using RenderGraph
- Visual Scripting Components are hidden behind a throbber when Multiplayer Play Mode is running with at least one local instance
- Video Player does not throw an error when playing a video with unsupported encoding settings
- Errors indicating that TMP Extras were not Imported logged when opening the Render Pipeline Converter Window while in Play Mode
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();