all repos — openbox @ 07f5240d8c6d4fc6d70d396c4205a42f87ee7a95

openbox fork - make it a bit more like ryudo

fix the check for if a relative is focused on map
Dana Jansens danakj@orodu.net
commit

07f5240d8c6d4fc6d70d396c4205a42f87ee7a95

parent

3606a4af6f75b5e35ce540bf083b776a097d096f

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

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

@@ -500,8 +500,8 @@

parent_focused = (focus_client != NULL && client_search_focus_parent(self)); relative_focused = (focus_client != NULL && - client_search_focus_tree_full(self) != NULL && - client_search_focus_group_full(self) != NULL); + (client_search_focus_tree_full(self) != NULL || + client_search_focus_group_full(self) != NULL)); /* This is focus stealing prevention */