Search Issue Tracker
Won't Fix
Won't Fix in 2023.2.X
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
- Out-of-bounds memory access with multiple CanvasRenderers under a Canvas when using Mesh API
- Inspector tries to access file after it was deleted when the file was locked in Inspector window
- Changing Transform values in Search window Inspector loses focus while dragging and stopping mouse without releasing dragging action
- Saving changes on the dirty VFX Graph during the Play mode throws "The referenced script (Unknown) on this Behaviour is missing!" warnings
- VFX Graph Debug Info overlaps the "Initialize" block debug info by default
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;
}
```
Resolution Note (2023.2.X):
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;
}
```