summaryrefslogtreecommitdiff
path: root/openbox/client.c
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2007-05-28 04:26:14 +0000
committerDana Jansens <danakj@orodu.net>2007-05-28 04:26:14 +0000
commit123ee25c59bcb875e6aff82c7dda299a15c79a2d (patch)
treedc2d827d4d88ba87ffe75d1db09d9f786f97ea14 /openbox/client.c
parent2a84418ee441d77d0d07760cbfc8359d0db624f4 (diff)
final touches for r6990-6992
Diffstat (limited to 'openbox/client.c')
-rw-r--r--openbox/client.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/openbox/client.c b/openbox/client.c
index e953a613..3456c5f8 100644
--- a/openbox/client.c
+++ b/openbox/client.c
@@ -598,7 +598,7 @@ ObClient *client_fake_manage(Window window)
uses too. this returns a shallow copy that needs to be freed */
settings = client_get_settings_state(self);
- client_setup_decor_and_functions(self);
+ client_setup_decor_and_functions(self, FALSE);
/* create the decoration frame for the client window and adjust its size */
self->frame = frame_new(self);
@@ -2967,8 +2967,7 @@ void client_fullscreen(ObClient *self, gboolean fs)
RECT_SET(self->pre_fullscreen_area, 0, 0, 0, 0);
}
- client_setup_decor_and_functions(self);
-
+ client_setup_decor_and_functions(self, FALSE);
client_move_resize(self, x, y, w, h);
/* and adjust our layer/stacking. do this after resizing the window,
@@ -3112,8 +3111,7 @@ void client_maximize(ObClient *self, gboolean max, gint dir)
client_change_state(self); /* change the state hints on the client */
- client_setup_decor_and_functions(self);
-
+ client_setup_decor_and_functions(self, FALSE);
client_move_resize(self, x, y, w, h);
}