nuthin
authorDana Jansens <danakj@orodu.net>
Fri, 22 Jun 2007 15:41:26 +0000 (15:41 +0000)
committerDana Jansens <danakj@orodu.net>
Fri, 22 Jun 2007 15:41:26 +0000 (15:41 +0000)
openbox/actions/moverelative.c
openbox/actions/moveto.c

index f3a3064..deb1eae 100644 (file)
@@ -61,7 +61,9 @@ static gboolean run_func(ObActionsData *data, gpointer options)
         client_try_configure(data->client, &x, &y, &w, &h, &lw, &lh, TRUE);
         client_find_onscreen(data->client, &x, &y, w, h, FALSE);
 
+        actions_client_move(data, TRUE);
         client_configure(data->client, x, y, w, h, TRUE, TRUE, FALSE);
+        actions_client_move(data, FALSE);
     }
 
     return FALSE;
index a8ba426..7cc6541 100644 (file)
@@ -99,7 +99,9 @@ static gboolean run_func(ObActionsData *data, gpointer options)
         /* force it on screen if its moving to another monitor */
         client_find_onscreen(c, &x, &y, w, h, mon != cmon);
 
+        actions_client_move(data, TRUE);
         client_configure(c, x, y, w, h, TRUE, TRUE, FALSE);
+        actions_client_move(data, FALSE);
 
         g_free(area);
         g_free(carea);