-
-
Notifications
You must be signed in to change notification settings - Fork 184
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
Can't resize window on X11 #395
Comments
resize.mp4
works on my machine :( |
I found the source of the bug. In On Windows and MacOS, my |
I've been playing a little at this. The core issue seems to be that that X11 window managers interpret equal min/max size as a strict, non-negotiable constraint. If the library sets those size hints, the WM obeys them and that blocks all resizing (from both user and program). I also tried setting _NET_WM_ALLOWED_ACTIONS to disallow resizing (and others, and maximizing but it seems to be ignored by the openbox WM I'm using, and apparently many others even if they claim compatibility so... The only workaround I found in order to be able to resize from the app while disabling user resizes is to save the desired window dimensions in the state, and in |
On Linux X11,
request_screen_size
doesn't panic (an improvement from 0.3) but it doesn't actually do anything.The text was updated successfully, but these errors were encountered: