X-Git-Url: https://git.brokenzipper.com/gitweb?a=blobdiff_plain;ds=sidebyside;f=openbox%2Faction.c;h=f8e66439daffc41bc7969667804ff7c74efc647c;hb=ebabf3943c926547739254fb67f8024166ea000f;hp=f8b2b7b3845175971043169876bd2b57fbcf7f63;hpb=5945d2e9c851a03d58ab364fe93136cbe5079c2b;p=chaz%2Fopenbox diff --git a/openbox/action.c b/openbox/action.c index f8b2b7b3..f8e66439 100644 --- a/openbox/action.c +++ b/openbox/action.c @@ -1351,7 +1351,7 @@ void action_toggle_omnipresent(union ActionData *data) { client_set_desktop(data->client.any.c, data->client.any.c->desktop == DESKTOP_ALL ? - screen_desktop : DESKTOP_ALL, FALSE); + screen_desktop : DESKTOP_ALL, FALSE, FALSE); } void action_move_relative_horz(union ActionData *data) @@ -1515,7 +1515,7 @@ void action_send_to_desktop(union ActionData *data) if (data->sendto.desk < screen_num_desktops || data->sendto.desk == DESKTOP_ALL) { - client_set_desktop(c, data->sendto.desk, data->sendto.follow); + client_set_desktop(c, data->sendto.desk, data->sendto.follow, FALSE); if (data->sendto.follow) screen_set_desktop(data->sendto.desk, TRUE); } @@ -1582,7 +1582,7 @@ void action_send_to_desktop_dir(union ActionData *data) !data->sendtodir.inter.final || data->sendtodir.inter.cancel) { - client_set_desktop(c, d, data->sendtodir.follow); + client_set_desktop(c, d, data->sendtodir.follow, FALSE); if (data->sendtodir.follow) screen_set_desktop(d, TRUE); }