all repos — openbox @ 5dfd8387783b9685762a46d6062dac4b98432f48

openbox fork - make it a bit more like ryudo

fix if action's "focused"
Dana Jansens danakj@orodu.net
commit

5dfd8387783b9685762a46d6062dac4b98432f48

parent

632557004ca2034b415f6c4b4de1cd14a14d1d55

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

jump to
M openbox/actions/if.copenbox/actions/if.c

@@ -128,8 +128,8 @@ (!o->maxvert_on || (c && c->max_vert)) &&

(!o->maxvert_off || (c && !c->max_vert)) && (!o->maxfull_on || (c && c->max_vert && c->max_horz)) && (!o->maxfull_off || (c && !(c->max_vert && c->max_horz))) && - (!o->focused || (c && !(c == focus_client))) && - (!o->unfocused || (c && !(c != focus_client)))) + (!o->focused || (c && (c == focus_client))) && + (!o->unfocused || (c && !(c == focus_client)))) { acts = o->thenacts; }