Search Issue Tracker
Fixed in 2019.1.X
Fixed in 2018.3.X
Votes
0
Found in
2018.2.1f1
Issue ID
1074892
Regression
No
Enabled GenericMenu.allowDuplicateNames doesn't allow duplicates in submenus
To reproduce:
1) Create new project
2) Create Editor folder and a script in there, use the code of first example here: https://docs.unity3d.com/ScriptReference/GenericMenu.AddItem.html
3) After the "GenericMenu menu = new GenericMenu();" add:
menu.allowDuplicateNames = true;
4) Duplicate "menu.AddItem(new GUIContent("MenuItem1"), false, Callback, "item 1");" and "menu.AddItem(new GUIContent("SubMenu/MenuItem3"), false, Callback, "item 3");" right under the corresponding originals
5) Open the newly made custom editor window
6) Right click in it to create the added context menu
Expected: Both duplicate entries are shown
Actual: Two MenuItem1 are shown, but only one MenuItem3
Reproduced in 2018.2.0b11, 2018.2.9f1
All about bugs
View bugs we have successfully reproduced, and vote for the bugs you want to see fixed most urgently.
Latest issues
- Crash on DynamicHeapAllocator::CreateTLSFBlock when opening a specific project
- Scene flickers when using Mesh Output with SpriteLit Shader in 2D project
- “Cache Management” text is misaligned in Preferences > Package Manager
- [macOS] network permission shows the name of previously closed app when different app requests network access
- Delta value returned by mouse movementsMonitor is different when changing Screen Resolution
Add comment