]> Dogcows Code - chaz/openbox/commitdiff
only end the interactive action if it's the action you just ran
authorDana Jansens <danakj@orodu.net>
Wed, 11 Jul 2007 22:16:39 +0000 (22:16 +0000)
committerDana Jansens <danakj@orodu.net>
Wed, 11 Jul 2007 22:16:39 +0000 (22:16 +0000)
openbox/actions.c

index 216c6fe14581922bac136cd86d4dc11effba419e..0f37526773efd88199e24a29a236f2545889199f 100644 (file)
@@ -259,9 +259,10 @@ void actions_run_acts(GSList *acts,
 
         /* fire the action's run function with this data */
         if (ok) {
-            if (!act->def->run(&data, act->options))
-                actions_interactive_end_act();
-            else {
+            if (!act->def->run(&data, act->options)) {
+                if (actions_act_is_interactive(act))
+                    actions_interactive_end_act();
+            } else {
                 /* make sure its interactive if it returned TRUE */
                 g_assert(act->def->i_cancel && act->def->i_input);
 
This page took 0.02697 seconds and 4 git commands to generate.