This commit is contained in:
Dana Jansens 2007-06-22 15:41:26 +00:00
parent d468f85300
commit 091a7f77d4
2 changed files with 4 additions and 0 deletions

View 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;

View 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);