summaryrefslogtreecommitdiff
path: root/openbox
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2003-10-18 22:09:29 +0000
committerDana Jansens <danakj@orodu.net>2003-10-18 22:09:29 +0000
commit5cac540f560313cc5fde6d6d710dc500fd03f97a (patch)
tree0eda25c483f0938487ca3357f68a30c394bc7959 /openbox
parent2aa5cd3574b2bbdc103cb7626aa1ff77ea2c0046 (diff)
add to teh focus order before the call to change_state, since this can remove/add to the focus order, and then we're in there twice
Diffstat (limited to 'openbox')
-rw-r--r--openbox/client.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/openbox/client.c b/openbox/client.c
index 94f571bb..2e71f279 100644
--- a/openbox/client.c
+++ b/openbox/client.c
@@ -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);