all repos — openbox @ ccb8cd61ac436d30102af024854199058bd5e147

openbox fork - make it a bit more like ryudo

lighten up a bit on the focus new windows criteria
Dana Jansens danakj@orodu.net
commit

ccb8cd61ac436d30102af024854199058bd5e147

parent

9c55fd5a57aa81f672cda3371379ae4fd7e6c34b

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

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

@@ -240,7 +240,7 @@

client_showhide(self); /* focus the new window? */ - if (ob_state != State_Starting && client_normal(self)) { + if (ob_state != State_Starting) { parent = NULL; if (self->transient_for) {

@@ -258,7 +258,7 @@ }

/* note the check against Type_Normal, not client_normal(self), which would also include dialog types. in this case we want more strict rules for focus */ - if ((config_focus_new && self->type == Type_Normal) || + if ((config_focus_new && client_normal(self)) || (parent && (client_focused(parent) || search_focus_tree(parent, parent)))) { client_focus(self);