]> Dogcows Code - chaz/openbox/commitdiff
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 f3a306482acef6cb7b33211a03d0cb45c9b98bba..deb1eae7ded27a673519fe212b3c2c1d255e92da 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 a8ba4261b0a34c7969fbd25d8ac96c5c0ed32aa4..7cc6541dbfa481236bf0673dfd7c9ab3645d43c9 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);
This page took 0.023749 seconds and 4 git commands to generate.