Add Content Fitting Mode Option on Fancy Button #202
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.
contentFittingMode
option onFancyButton
which defaults todefault
:default
: Text and icon content are constrained within the dimensions of the button view as before, with padding accounted for. ie. if content dimensions exceed that of the view - paddings, they will scale down just enough to fit. Otherwise they will remain at their default scale.fill
: Text and icon content are scaled proportionally to fill the button view, with padding accounted for but without exceeding dimensions. Here, the optional default scale options will apply on top of the content after the filling is done.none
: Text and icon content will always remain at their default scale regardless of the button view dimensions and padding.ignoreRefitting
as it was previously meant to allow for the legacy behaviour of the content fitting which is not desirable. ie. the content will preserve its down scaling and won't reset to its base scale even if the updated button view dimensions are be able to accommodate their base dimensions (Logic remains intact for the rare case of it still being in use).contentFittingMode
option on theFancyButtonNineSliceSprite
example.