summaryrefslogtreecommitdiff
path: root/openbox/actions/addremovedesktop.c
diff options
context:
space:
mode:
authorMikael Magnusson <mikachu@comhem.se>2007-07-11 22:30:36 +0000
committerMikael Magnusson <mikachu@comhem.se>2007-07-11 22:30:36 +0000
commit256c82a9f187842ac6d8823357ee91973c67148d (patch)
treef70f1553fe44f75066a881ff9442774a607e273c /openbox/actions/addremovedesktop.c
parent1d685c0dfdc12ef3910bcd91edfeee13239e2344 (diff)
fix the remaining reversed actions_client_move
Diffstat (limited to 'openbox/actions/addremovedesktop.c')
-rw-r--r--openbox/actions/addremovedesktop.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/openbox/actions/addremovedesktop.c b/openbox/actions/addremovedesktop.c
index 6a646681..c8904d3c 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;
}