]> Dogcows Code - chaz/openbox/commitdiff
the check for if the window is being resized is only needed for syncing
authorDana Jansens <danakj@orodu.net>
Tue, 24 Apr 2007 14:27:31 +0000 (14:27 +0000)
committerDana Jansens <danakj@orodu.net>
Tue, 24 Apr 2007 14:27:31 +0000 (14:27 +0000)
openbox/moveresize.c

index c34cf81b29e239877cd64419a8e1a577957ea75c..6db822c3f9d3b0d4a3e6bb7303fa9e1782b60369 100644 (file)
@@ -269,32 +269,31 @@ static void do_move(gboolean resist)
 
 static void do_resize()
 {
-    gint x, y, w, h, lw, lh;
-
-    /* see if it is actually going to resize */
-    x = moveresize_client->area.x;
-    y = moveresize_client->area.y;
-    w = cur_x;
-    h = cur_y;
-    client_try_configure(moveresize_client, lockcorner, &x, &y, &w, &h,
-                         &lw, &lh, TRUE);
-    if (w == moveresize_client->area.width &&
-        h == moveresize_client->area.height)
-    {
-        return;
-    }
-
 #ifdef SYNC
     if (config_resize_redraw && extensions_sync &&
         moveresize_client->sync_request && moveresize_client->sync_counter)
     {
         XEvent ce;
         XSyncValue val;
+        gint x, y, w, h, lw, lh;
 
         /* are we already waiting for the sync counter to catch up? */
         if (waiting_for_sync)
             return;
 
+        /* see if it is actually going to resize */
+        x = moveresize_client->area.x;
+        y = moveresize_client->area.y;
+        w = cur_x;
+        h = cur_y;
+        client_try_configure(moveresize_client, lockcorner, &x, &y, &w, &h,
+                             &lw, &lh, TRUE);
+        if (w == moveresize_client->area.width &&
+            h == moveresize_client->area.height)
+        {
+            return;
+        }
+
         /* increment the value we're waiting for */
         ++moveresize_client->sync_counter_value;
         XSyncIntToValue(&val, moveresize_client->sync_counter_value);
This page took 0.029096 seconds and 4 git commands to generate.