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
- “Remove Unused Overrides” available on not loaded Scene and throws “ArgumentException: The scene is not loaded” warning
- Adaptive Probe Volume occlusion edge is calculated incorrectly when viewing probes near geometry edges
- Sampling a texture using an HLSL file throws shader errors and the code does not compile
- "Graphics.CopyTexture called with null source texture" error when Base Camera of an Overlay Camera is removed with DX11 Graphics API and Compatibility Mode enabled
- WebGL sends wrong value with large numbers when SendMessage function is used
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;