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
- NullReferenceException when setting 'isTextObjectScaleStatic' to false on a disabled TextMeshPro GameObject
- Shader Stripping Custom Options disappear when exiting Play mode without reloading Domain
- Decals do not get projected when 'Rendering Layer Mask' on a GameObject is 23rd Layer or above due to encoding/decoding issues
- Deriving from SearchContextAttribute doesn't always work
- Scripting API documentation is missing for macOS editor extensions
Add comment