]> Dogcows Code - chaz/openbox/commitdiff
add to teh focus order before the call to change_state, since this can remove/add...
authorDana Jansens <danakj@orodu.net>
Sat, 18 Oct 2003 22:09:29 +0000 (22:09 +0000)
committerDana Jansens <danakj@orodu.net>
Sat, 18 Oct 2003 22:09:29 +0000 (22:09 +0000)
openbox/client.c

index 94f571bb4f2540d5ebe87541af870c175647dc56..2e71f279667ddcaa262e935940803bee395e8632 100644 (file)
@@ -269,6 +269,10 @@ void client_manage(Window window)
 
     sn_app_started(self->class);
 
+    /* update the focus lists, do this before the call to change_state or
+       it can end up in the list twice! */
+    focus_order_add_new(self);
+
     client_change_state(self);
 
     /* remove the client's border (and adjust re gravity) */
@@ -287,9 +291,6 @@ void client_manage(Window window)
 
     client_apply_startup_state(self);
 
-    /* update the focus lists */
-    focus_order_add_new(self);
-
     stacking_add(CLIENT_AS_WINDOW(self));
     client_restore_session_stacking(self);
 
This page took 0.032461 seconds and 4 git commands to generate.