fix moved comment
authorDana Jansens <danakj@orodu.net>
Wed, 13 Jun 2007 15:08:19 +0000 (15:08 +0000)
committerDana Jansens <danakj@orodu.net>
Wed, 13 Jun 2007 15:08:19 +0000 (15:08 +0000)
openbox/client.c
openbox/event.c

index f70ab44..563eb04 100644 (file)
@@ -1812,10 +1812,7 @@ void client_reconfigure(ObClient *self, gboolean force)
 {
     gint x, y, w, h, lw, lh;
 
-    /* make sure the client's sizes are within its bounds, but only
-       reconfigure the window if it needs to. emacs will update its
-       normal hints every time it receives a conigurenotify */
-        RECT_TO_DIMS(self->area, x, y, w, h);
+    RECT_TO_DIMS(self->area, x, y, w, h);
     if (!force)
         client_try_configure(self, &x, &y, &w, &h, &lw, &lh, FALSE);
     if (force || !RECT_EQUAL_DIMS(self->area, x, y, w, h)) {
index 88cccde..cfa000d 100644 (file)
@@ -1486,6 +1486,9 @@ static void event_handle_client(ObClient *client, XEvent *e)
             /* normal hints can make a window non-resizable */
             client_setup_decor_and_functions(client, FALSE);
 
+            /* make sure the client's sizes are within its bounds, but only
+               reconfigure the window if it needs to. emacs will update its
+               normal hints every time it receives a conigurenotify */
             client_reconfigure(client, FALSE);
         } else if (msgtype == XA_WM_HINTS) {
             client_update_wmhints(client);