all repos — openbox @ c83832887bd6ca51fa9e04d91dab086c1bcb4229

openbox fork - make it a bit more like ryudo

make omnipresent windows not flicker when changing desktops
Mikael Magnusson mikachu@comhem.se
commit

c83832887bd6ca51fa9e04d91dab086c1bcb4229

parent

9cb80fc994c09ee62f99f46244b840ce25fd40f4

1 files changed, 2 insertions(+), 2 deletions(-)

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

@@ -1601,7 +1601,7 @@ data->desktop.desk == DESKTOP_ALL)

{ screen_set_desktop(data->desktop.desk, TRUE); if (data->inter.any.interactive) - screen_desktop_popup(data->desktop.desk, TRUE); + screen_desktop_popup(data->desktop.desk, focus_client->desktop != DESKTOP_ALL); } }

@@ -1621,7 +1621,7 @@ NotifyWhileGrabbed and applications don't like that. */

if (!data->sendtodir.inter.any.interactive || (data->sendtodir.inter.final && !data->sendtodir.inter.cancel)) { - if (d != screen_desktop) screen_set_desktop(d, TRUE); + if (d != screen_desktop) screen_set_desktop(d, focus_client->desktop != DESKTOP_ALL); } }