-
Notifications
You must be signed in to change notification settings - Fork 1.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
group
widgets ignore horizontal wrapping
#1996
Comments
Also encountered this. There will also be a problem when using ui.vertical() instead of ui.group. |
I have the same issue on egui v0.24, using eframe to build a native desktop application on windows 10. |
I'm having the same problem, but also doesnt seem to work when using |
Same, the only way i was sort of able to fix this was by wrapping the group in |
another way to fix it that I found was to use |
Describe the bug
When using
ui.group()
inside something likeui.horizontal_wrapped()
, the widgets seem to ignore wrapping and just keep going well past screen boundaries. I went crazy trying to figure out why my UI was overflowing, until I removed the group and it started wrapping as expected.To Reproduce
I put together this simple sample with eframe that triggers the issue:
Expected behavior
The widgets don't overflow, and they keep going on a new row.
Screenshots
Desktop (please complete the following information):
Let me know if anything else is needed here :)
The text was updated successfully, but these errors were encountered: