]> Dogcows Code - chaz/openbox/blobdiff - openbox/actions/resizerelative.c
fix the remaining reversed actions_client_move
[chaz/openbox] / openbox / actions / resizerelative.c
index 1aefb515d8363040321305c83acf3409beb67f20..075c9e7348dcf3088e642c5375c9962588506889 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;
This page took 0.021087 seconds and 4 git commands to generate.