Fix PickList
text wrapping
#1318
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
PickList text is wrapped if the pick list is set to a fixed width and the selected text is wider than the fixed width. This resolves the issue by giving the rendered text bounds an infinite width so it doesn't wrap. A layer / clip needs to be provided to prevent text overflow.
I can't imagine wrapping is intended since the height is fixed to
text_size
and 2 lines of wrapped text insidetext_size
doesn't look good at all. This seems like a more sane default to handle text overflow.