We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
When detecting window resize events, it doesn't check which window is resized. When multiple windows are used, events from other windows will affect egui. The fix is to check like this: https://github.com/Yamakaky/gyromouse/blob/gui/src/backend/sdl/overlay.rs#L221-L225.
https://github.com/ArjunNair/egui_sdl2_gl/blob/main/src/lib.rs#L54-L57
The text was updated successfully, but these errors were encountered:
Good point! I'll integrate that fix asap.
Sorry, something went wrong.
I've added the suggested fixes. Would appreciate it you can confirm they look good.
Just found out that we have the same problem for keyboard and mouse events. Fix: Yamakaky/gyromouse@55b26af
Thanks. I've pushed changes to check for window id across events.
Sgtm!
ArjunNair
No branches or pull requests
When detecting window resize events, it doesn't check which window is resized. When multiple windows are used, events from other windows will affect egui. The fix is to check like this: https://github.com/Yamakaky/gyromouse/blob/gui/src/backend/sdl/overlay.rs#L221-L225.
https://github.com/ArjunNair/egui_sdl2_gl/blob/main/src/lib.rs#L54-L57
The text was updated successfully, but these errors were encountered: