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
- Context menu item checkmark updates only after reopening twice when using Menu.SetChecked on component context menu items
- Long Property names are not truncated in the Add Property dropdown in the Animation window when the Long Property name does not fit
- [iOS] High CPU load when device keyboard is open
- Selected Animation clip in the Animation window changes when the Domain Reload is triggered
- Animation window scrollbar keeps resetting when the scrollbar width is changed after adding an event
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;
}
```