all repos — openbox @ b60cf73900135f41802ab010227fe26aa66e6807

openbox fork - make it a bit more like ryudo

only auto-activate normal windows when they raise themselves (not splash screens or panels or desktops - what desktop would raise itself heh)
Dana Jansens danakj@orodu.net
commit

b60cf73900135f41802ab010227fe26aa66e6807

parent

71af5156bad35b6ea0b45a220fa05cb6f8d745fe

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

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

@@ -567,7 +567,7 @@ break;

case Above: ob_debug("Restack request Above for client %s sibling %s\n", client->title, sibling ? sibling->title : "(all)"); - if (activate && !client->iconic) + if (activate && !client->iconic && client_normal(client)) /* use user=TRUE because it is impossible to get a timestamp for this */ client_activate(client, FALSE, TRUE);

@@ -578,7 +578,7 @@ case TopIf:

ob_debug("Restack request TopIf for client %s sibling %s\n", client->title, sibling ? sibling->title : "(all)"); if (stacking_occluded(client, sibling)) { - if (activate && !client->iconic) + if (activate && !client->iconic && client_normal(client)) /* use user=TRUE because it is impossible to get a timestamp for this */ client_activate(client, FALSE, TRUE);

@@ -591,7 +591,7 @@ ob_debug("Restack request Opposite for client %s sibling "

"%s\n", client->title, sibling ? sibling->title : "(all)"); if (stacking_occluded(client, sibling)) { - if (activate && !client->iconic) + if (activate && !client->iconic && client_normal(client)) /* use user=TRUE because it is impossible to get a timestamp for this */ client_activate(client, FALSE, TRUE);