a) set the focus client before calculating its layer
authorDana Jansens <danakj@orodu.net>
Sun, 22 Apr 2007 19:35:50 +0000 (19:35 +0000)
committerDana Jansens <danakj@orodu.net>
Sun, 22 Apr 2007 19:35:50 +0000 (19:35 +0000)
b) cleanup in focus.c

openbox/event.c
openbox/focus.c

index c8356be..f276a07 100644 (file)
@@ -471,8 +471,8 @@ static void event_process(const XEvent *ec, gpointer data)
             focus_fallback(TRUE);
         } else if (client && client != focus_client) {
             frame_adjust_focus(client->frame, TRUE);
-            client_calc_layer(client);
             focus_set_client(client);
+            client_calc_layer(client);
         }
     } else if (e->type == FocusOut) {
         gboolean nomove = FALSE;
index 7a68680..afedd00 100644 (file)
@@ -259,10 +259,6 @@ ObClient* focus_fallback_target(gboolean allow_refocus, ObClient *old)
 void focus_fallback(gboolean allow_refocus)
 {
     ObClient *new;
-    ObClient *old;
-
-    /* save this before moving focus away to nothing */
-    old = focus_client;
 
     /* unfocus any focused clients.. they can be focused by Pointer events
        and such, and then when I try focus them, I won't get a FocusIn event
@@ -270,7 +266,7 @@ void focus_fallback(gboolean allow_refocus)
     */
     focus_nothing();
 
-    if ((new = focus_fallback_target(allow_refocus, old)))
+    if ((new = focus_fallback_target(allow_refocus, focus_client)))
         client_focus(new);
 }