From: Mikael Magnusson Date: Wed, 11 Jul 2007 22:30:36 +0000 (+0000) Subject: fix the remaining reversed actions_client_move X-Git-Url: http://git.openbox.org/?p=dana%2Fopenbox-history.git;a=commitdiff_plain;h=256c82a9f187842ac6d8823357ee91973c67148d fix the remaining reversed actions_client_move --- diff --git a/openbox/actions/addremovedesktop.c b/openbox/actions/addremovedesktop.c index 6a64668..c8904d3 100644 --- a/openbox/actions/addremovedesktop.c +++ b/openbox/actions/addremovedesktop.c @@ -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; } diff --git a/openbox/actions/growtoedge.c b/openbox/actions/growtoedge.c index b6979c9..fffcc4e 100644 --- a/openbox/actions/growtoedge.c +++ b/openbox/actions/growtoedge.c @@ -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); } } } diff --git a/openbox/actions/resizerelative.c b/openbox/actions/resizerelative.c index 1aefb51..075c9e7 100644 --- a/openbox/actions/resizerelative.c +++ b/openbox/actions/resizerelative.c @@ -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;