Search Issue Tracker
Won't Fix
Votes
0
Found in
2019.2
2019.4.6f1
2020.2
Issue ID
1266200
Regression
Yes
NullReferenceException is thrown when using EditorStyles.wordWrappedLabel inside a ToggleGroup
How to reproduce:
1. Open the project "WordWrappedLabel.zip"
2. Go to Window -> My Window and dock it somewhere
3. In the Project window open Editor/TestEditorScript.cs
4. In the TestEditorScript.cs comment out EditorGUILayout.EndToggleGroup(); line and save it
5. Focus the Editor and observe the error in the Console
6. Uncomment the same line and focus the Editor
Expected result: the error is no longer thrown once the line is uncommented
Actual result: the error remains in the Console
Reproducible with: 2019.2.0a1, 2019.2.21f1, 2019.3.16f1, 2019.4.6f1, 2020.1.0f1, 2020.2.0a19
Could not test with: 2018.4.26f1, 2019.1.0a14, 2019.1.14f1
Notes:
1. Full error:
NullReferenceException: Object reference not set to an instance of an object
UnityEditor.EditorStyles.get_wordWrappedLabel () (at /Users/builduser/buildslave/unity/build/Editor/Mono/GUI/EditorStyles.cs:41)
TestEditorScript..ctor () (at Assets/Editor/TestEditorScript.cs:6)
2. Versions 2018.4.26f1, 2019.1.14f1 do not throw any NullReferenceExceptions (when the line is commented and when the line is uncommented)
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
- Icon section shows incomplete message and unusable check box in Build Profiles and Player Settings window instead of “Not applicable for this platform” for Dedicated Server Platform
- "Editor unavailable" message is displayed when navigating to "Get set up" tab in Unity Hub
- Assets are created in the Package folders when creating assets via custom buttons in the Inspector window or other windows
- “Select” windows are named differently on Windows and macOS
- [Windows] No minimum “Select” window size
Resolution Note (2020.2.X):
The core issue here is of trying to access the styles when the domain reload is in progress. At this stage, the style catalog is not available and hence the null reference exceptions. Unfortunately, the design cannot be altered at this point, to make the styles available during a domain reload. Hence we will not be able to fix this
Also refer to case 1231054 which deals with the same problem