X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=openbox%2Faction.c;h=37370e802b4707b13f4311cedd4cefcb37e0b4da;hb=4044b942e74b59599e82bb4834a730c32e49820d;hp=be54a0066823c741291977046cc9bac982213f31;hpb=6973d5b8a50844ef8eecf076f8f15d5ece4270ef;p=chaz%2Fopenbox diff --git a/openbox/action.c b/openbox/action.c index be54a006..37370e80 100644 --- a/openbox/action.c +++ b/openbox/action.c @@ -773,27 +773,6 @@ void action_send_to_desktop(union ActionData *data) } } -void action_desktop_dir(union ActionData *data) -{ - guint d; - - d = screen_cycle_desktop(data->desktopdir.dir, - data->desktopdir.wrap, - data->desktopdir.linear, - data->desktopdir.inter.any.interactive, - data->desktopdir.inter.final, - data->desktopdir.inter.cancel); - /* only move the desktop when the action is complete. if we switch - desktops during the interactive action, focus will move but with - NotifyWhileGrabbed and applications don't like that. */ - if (!data->sendtodir.inter.any.interactive || - (data->sendtodir.inter.final && !data->sendtodir.inter.cancel)) - { - if (d != screen_desktop) - screen_set_desktop(d, TRUE); - } -} - void action_send_to_desktop_dir(union ActionData *data) { ObClient *c = data->sendtodir.inter.any.c;