fix the remaining reversed actions_client_move
authorMikael Magnusson <mikachu@comhem.se>
Wed, 11 Jul 2007 22:30:36 +0000 (22:30 +0000)
committerMikael Magnusson <mikachu@comhem.se>
Wed, 11 Jul 2007 22:30:36 +0000 (22:30 +0000)
openbox/actions/addremovedesktop.c
openbox/actions/growtoedge.c
openbox/actions/resizerelative.c

index 6a64668..c8904d3 100644 (file)
@@ -74,14 +74,14 @@ static gboolean run_func(ObActionsData *data, gpointer options)
 {
     Options *o = options;
 
-    actions_client_move(data, FALSE);
+    actions_client_move(data, TRUE);
 
     if (o->add)
         screen_add_desktop(o->current);
     else
         screen_remove_desktop(o->current);
 
-    actions_client_move(data, TRUE);
+    actions_client_move(data, FALSE);
 
     return FALSE;
 }
index b6979c9..fffcc4e 100644 (file)
@@ -75,9 +75,9 @@ static gboolean run_func(ObActionsData *data, gpointer options)
                 w != data->client->area.width ||
                 h != data->client->area.height)
             {
-                actions_client_move(data, FALSE);
-                client_move_resize(data->client, x, y, w, h);
                 actions_client_move(data, TRUE);
+                client_move_resize(data->client, x, y, w, h);
+                actions_client_move(data, FALSE);
             }
         }
     }
index 1aefb51..075c9e7 100644 (file)
@@ -76,9 +76,9 @@ static gboolean run_func(ObActionsData *data, gpointer options)
         yoff = yoff == 0 ? 0 :
             (yoff < 0 ? MAX(yoff, oh-nh) : MIN(yoff, oh-nh));
 
-        actions_client_move(data, FALSE);
-        client_move_resize(c, x + xoff, y + yoff, nw, nh);
         actions_client_move(data, TRUE);
+        client_move_resize(c, x + xoff, y + yoff, nw, nh);
+        actions_client_move(data, FALSE);
     }
 
     return FALSE;