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
- Volumetric fog shader variants are missing from build when "Strict Shader Variant Matching" is disabled
- Unnecessary modifications clutter the Scene when using a RectTransform driven by a LayoutGroup in a Prefab
- Files in the target folder are deleted without a proper warning when building an iOS project
- Character animation freezes when toggling animator on/off in a coroutine
- Certain textures are incorrectly marked in the render pass list when observed through Render Graph Viewer
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;
}
```