]> Dogcows Code - chaz/openbox/commitdiff
cancel the interactive action only if runing another one. i think this will work?
authorDana Jansens <danakj@orodu.net>
Wed, 11 Jul 2007 21:41:02 +0000 (21:41 +0000)
committerDana Jansens <danakj@orodu.net>
Wed, 11 Jul 2007 21:41:02 +0000 (21:41 +0000)
openbox/actions.c

index 3bfb3b3f24011294293c5c51224ffba674851382..216c6fe14581922bac136cd86d4dc11effba419e 100644 (file)
@@ -249,11 +249,12 @@ void actions_run_acts(GSList *acts,
         actions_setup_data(&data, uact, state, x, y, button, con, client);
 
         if (!interactive_act || interactive_act->def != act->def) {
-            /* cancel the old one */
-            if (interactive_act)
-                actions_interactive_cancel_act();
-            if (actions_act_is_interactive(act))
+            if (actions_act_is_interactive(act)) {
+                /* cancel the old one */
+                if (interactive_act)
+                    actions_interactive_cancel_act();
                 ok = actions_interactive_begin_act(act, state);
+            }
         }
 
         /* fire the action's run function with this data */
This page took 0.022172 seconds and 4 git commands to generate.