Search Issue Tracker
Fixed
Votes
5
Found in
4.5.0f6
Issue ID
626352
Regression
No
GUI Style Wordwrap causes extra spacing at the end of label to appear
To reproduce:
1.Open attached project or check this forum post for repro steps without project: http://forum.unity3d.com/threads/guistyle-wordwrap-bug-with-non-default-font-size-parent-wrapper-does-not-shrink-to-content.262468/
2.Open custom window by going to Window > WordWrapBugWindow.
3.Notice unexpected extra spacing in right corner of label.
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
- Importer Worker does not see Script reference in SubScene GameObject when clearing Entity Cache
- Gravity stops working when there are 2 or more Animation Layers in the Animator and the "Apply Root Motion" option is enabled
- Crash on ScriptingInvocation::Invoke<bool> when toggling "Deep Profile"
- Cinemachine Camera does not move along Spline when the Cinemachine Cart Spline Components Position Units are set to Knots or Normalized
- App build fails with the “GOT load reloc does not point to a LDR instruction” error when having ECS and Netcode packages if using Xcode 15
bigbadtrumpet125
Nov 10, 2014 21:11
Hack fix for anyone looking at this bug and needing a short term solution
input = GUI.TextArea(pos, input, style);
TextEditor te = (TextEditor)GUIUtility.GetStateObject(typeof(TextEditor), GUIUtility.GetControlID(FocusType.Keyboard, pos) - 1);
te.scrollOffset.x = 0;
thrakinator
Nov 06, 2014 17:34
This would seem a pretty serious issue that will break any number of interfaces. How is it not already fixed?
krbbagel
Nov 05, 2014 21:25
Tested with 4.3 and no bug... in 4.5(.5) if we hold down space bar after 2 or 3 lines of word wrap the entire text moves out of the entry box (and can even leave the Unity screen if held long enough).
Possibly related bug: text entry blinking cursor is tiny / mis-aligned in 4.5 but not in 4.3...