Search Issue Tracker
Won't Fix
Votes
1
Found in
2021.3.27f1
2022.3.2f1
2023.1.1f1
2023.2.0a20
Issue ID
UUM-40353
Regression
No
Input field text is missing when in toolbar
Reproduction steps:
1. Open the “FieldsInToolbar“ project
2. Observe the input fields in the toolbar
Expected result: The fields contain text
Actual result: The fields do not show any text
Reproduced in: 2021.3.27f1, 2022.3.2f1, 2023.1.1f1, 2023.2.0a20
Reproduced using: macOS 13.4 (Intel), Windows 10
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:
This workflow is using reflection to customize the look of the editor and thus is not supported by Unity.
After a short investigation, we can suggest to use styling as a workaround. The problem seems to be that the input field is clipped out, so changing `overflow` to `visible` would solve the problem, but could create others. Adding this style brings back the input fields:
```
.unity-base-text-field__input--single-line {
overflow: visible;
}
```