You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
I'm trying to handle cases in my program where the text for a button might be a bit long.
I'm able to button.set_max_width() but this only scales the text in order to make it fit.
Describe the solution you'd like
I'd like to be able to wordwrap=True similar to how a Label works. This would increase the height of the button and allow text to flow onto multiple lines.
Describe alternatives you've considered
Creating a custom widget that combines the functionality of Buttons and Labels.
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
I'm trying to handle cases in my program where the text for a button might be a bit long.
I'm able to
button.set_max_width()
but this only scales the text in order to make it fit.Describe the solution you'd like
I'd like to be able to
wordwrap=True
similar to how aLabel
works. This would increase the height of the button and allow text to flow onto multiple lines.Describe alternatives you've considered
Creating a custom widget that combines the functionality of Buttons and Labels.
The text was updated successfully, but these errors were encountered: