all repos — openbox @ a16449adb643d6416cc71af1bb6b5fde93b95cb0

openbox fork - make it a bit more like ryudo

don't change stacking stuff on windows when moving them during the unmanage phase.
Dana Jansens danakj@orodu.net
commit

a16449adb643d6416cc71af1bb6b5fde93b95cb0

parent

197ee0ad4732c8668fe38a6b49e0a747866ef3ea

1 files changed, 10 insertions(+), 5 deletions(-)

jump to
M openbox/client.copenbox/client.c

@@ -3128,11 +3128,16 @@

/* if it moved between monitors, then this can affect the stacking layer of this window or others - for fullscreen windows. also if it changed to/from oldschool fullscreen then its layer may - change */ - if (screen_find_monitor(&self->frame->area) != - screen_find_monitor(&oldframe) || - (final && (client_is_oldfullscreen(self, &oldclient) != - client_is_oldfullscreen(self, &self->area)))) + change + + watch out tho, don't try change stacking stuff if the window is no + longer being managed ! + */ + if (self->managed && + (screen_find_monitor(&self->frame->area) != + screen_find_monitor(&oldframe) || + (final && (client_is_oldfullscreen(self, &oldclient) != + client_is_oldfullscreen(self, &self->area))))) { client_calc_layer(self); }