Search Issue Tracker
Fixed
Fixed in 2023.2.4f1, 2023.3.0a17
Votes
0
Found in
2023.1.0a22
2023.2.0a22
2023.3.0a1
Issue ID
UUM-21496
Regression
No
Singleline constraint ignored on TextField when value set in code to string with \n
Summary:
A user can set a TextField's multiline to false in code, but can then have a multiline value if he sets the value IN CODE to a string which contains \n.
!image-2022-12-14-11-55-07-733.png!
!image-2022-12-14-11-55-39-280.png!
Extra Notes:
When the value is set in code, there is no check for the multiline attribute.
Reproduction steps (in code):
1) In code, create a TextField
2) Set multiline = false
3) set the value to any string with a \n
Expected Results:
The \n is ignored and the string is displayed on 1 line.
Actual Results:
string is displayed on 2 lines.
Tested on:
Unity Version 2023.1.0a24, WIN10
Branch <name> [<commit hash>]
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
- Warnings in the Bug Reporter window are cut off and not truncated when the Bug Reporter window is resized to its minimum size
- Color is incorrectly applied to objects when initialized with non-normalized parameters
- SerializationUtility.GetManagedReferencesWithMissingTypes() don't return null when “Prefab has missing SerializeReference Types“ warning banner is present
- Memory leak when VFX Graph is open and Camera has "Target Texture" enabled
- The Canvas component's warning box is missing an apostrophe when Additional Shader Channels is set to "Normal" and "Tangent" with Render Mode set to "Screen Space - Overlay"
Resolution Note (fix version 2023.3.0a17):
For this use, users should escape their escaped sequences before setting it through value. Otherwise, the generator will interpret them as valid characters and parse them accordingly.
Resolution Note (fix version 2023.2.4f1):
For this use, users should escape their escaped sequences before setting it through value. Otherwise, the generator will interpret them as valid characters and parse them accordingly.