Search Issue Tracker
By Design
Votes
0
Found in
2019.3.0f1
2020.1
Issue ID
1207603
Regression
No
EditorGUI.PropertyField does not tint the labels when the Personal theme is set for the Editor
To reproduce:
1. Open attached project
2. In Hierarchy window select GameObject
3. Check inspector window with Personal theme and Professional theme
Actual result: In a personal theme, labels are black
Expected result: In both themes labels and fields should be red
Reproduced with: 2017.4.35f1; 2018.4.15f1; 2019.2.17f1; 2020.1.0a18
Note: Images are attached bellow
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
- “Default Scene” dropdown field contains a spelling mistake “Default Builtin”
- Editor crashes on PPtr<Mesh> after adding Text Mesh and Cloth Components to the same GameObject
- Previously deleted “DefaultLookDevProfile“ is present when upgrading the Editor version
- [Ubuntu] UI text and buttons are missing spaces in Unity Version Control > New Workspace window
- "Inherit attribute is not supported" warning is shown but attributes are available in VFX Graph Output and Update blocks
Resolution Note (2020.1.X):
While drawing the content the GUI.color is multiplied with text color and the resulting color is used to draw the text. For pro theme the text color is white(RGB value 1) and the product will result in GUI.color however for standard theme the text color is black(RGB value 0) and the product always returns the black color(color * 0 is always 0).
As a workaround the user can use the following code to result in his desired behavior
Color oldColor = EditorStyles.label.normal.textColor;
EditorStyles.label.normal.textColor = Color.white;
GUI.color = Color.red;
EditorGUI.PropertyField(position, property);
EditorStyles.label.normal.textColor = oldColor;