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

  1. 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;
    }
    ```

Add comment

Log in to post comment

All about bugs

View bugs we have successfully reproduced, and vote for the bugs you want to see fixed most urgently.