all repos — openbox @ ae0971659fdd41fc7e9ccb6ca2b2536f96c09061

openbox fork - make it a bit more like ryudo

don't set variables twice
Dana Jansens danakj@orodu.net
commit

ae0971659fdd41fc7e9ccb6ca2b2536f96c09061

parent

07f5240d8c6d4fc6d70d396c4205a42f87ee7a95

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

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

@@ -494,8 +494,8 @@ ob_debug_type(OB_DEBUG_FOCUS, "Going to try activate new window? %s\n",

activate ? "yes" : "no"); if (activate) { gboolean raise = FALSE; - gboolean relative_focused = FALSE; - gboolean parent_focused = FALSE; + gboolean relative_focused; + gboolean parent_focused; parent_focused = (focus_client != NULL && client_search_focus_parent(self));