Search Issue Tracker
Fixed in 5.0.X
Votes
0
Found in
4.6.0b18
Issue ID
630509
Regression
No
GenericMenu doesn't work correctly on OSX
To Reproduce:
1. Open the attached project on OSX, click 'Window/Runtime Inspector Configuration', click on 'Add Property', notice that all menu items are disabled.
2. It works fine on Windows.
3. Goto line 200 in 'RuntimeInspectorMainWindow.cs' edit the "/" string in component.Name + "/" to for example " /".
4. Now there are two entries of each component in the 'Add Property' menu, but only the one with the edited path works fine.
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
- [Quest] Pitch Shifter causes audio degradation on Quest 2 devices when sped up
- "GUI Error: Invalid GUILayout" and "NullReferenceException" are thrown when adding Scenes to "Scenes in Baking Set" in Adaptive Probe Volumes
- Inspector window not updating when switching GameObjects in Play Mode while having a VR headset connected
- “UnityException: GetInvalidFilenameChars” errors are thrown, and the Overlay Save Preset button becomes unusable when entering Play Mode with a shortcut while Overlay Save Preset window is opened
- "UnityException: GetName can only be called from the main thread." erors are thrown when the Shortcuts window is opened and entering Play Mode with a shortcut
Pantom
Oct 16, 2014 17:34
This seemed to be caused by the separator item in the sub menu. As a workaround comment out the following line in RuntimeInspectorMainWindow.cs and RuntimeInspectorEditor.cs:
menu.AddSeparator(component.Name + "/");
After this all menu items are enabled.