When turning off maximize/fullscreen, keep window on same monitor.#39
When turning off maximize/fullscreen, keep window on same monitor.#39compmstr wants to merge 1 commit intodanakj:masterfrom
Conversation
This is a fix for: https://bugzilla.icculus.org/show_bug.cgi?id=4408 Basically, when we go to unmaximize, if the client is currently on a different moniter than the one it was on when it was originally maximized, we now move it to the same position on the current monitor, instead of snapping it back to the old one. We do the same thing for removing the fullscreen status. For the case when the current screen is smaller than the old monitor, I also set up code to move the client to be visible on the new monitor, if it's not visible.
|
Could this fix be adapted to solving bug 5733 (Track window position when monitors change, restore position (if not dirtied) when same monitors are restored)? |
|
Hmm, good question. Maximize and Fullscreen both are initiated from within Openbox, so there was an easy place to check and restore the positions. Doing a quick grep through the codebase, I see the Xrandr library being pulled in, but I'm not seeing it being used anywhere. If there were any way to hook into it and tell when a monitor was disconnected and/or connected I could see that fix being a possibility, but I'm not seeing that option currently. |
|
Maybe just save the current display resolution and trigger when it changes? The heart of this issue is in changing resolution, which happens (especially in today's LCD-dominated landscape) mostly when adding or removing monitors. |
This is a fix for: https://bugzilla.icculus.org/show_bug.cgi?id=4408
When we go to unmaximize, if the client is currently on a
different monitor than the one it was on when it was originally
maximized, we now move it to the same position on the current
monitor, instead of snapping it back to the old one.
We do the same thing for removing the fullscreen status.
For the case when the current screen is smaller than the old monitor,
I also set up code to move the client to be visible on the new
monitor, if it's not visible.