summaryrefslogtreecommitdiffstats
path: root/apps/action.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/action.c')
-rw-r--r--apps/action.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/apps/action.c b/apps/action.c
index 5810003744..f493296a03 100644
--- a/apps/action.c
+++ b/apps/action.c
@@ -33,6 +33,7 @@
#include "splash.h"
#include "settings.h"
#include "pcmbuf.h"
+#include "misc.h"
static int last_button = BUTTON_NONE|BUTTON_REL; /* allow the ipod wheel to
work on startup */
@@ -261,6 +262,10 @@ bool action_userabort(int timeout)
{
int action = get_action_worker(CONTEXT_STD,timeout,NULL);
bool ret = (action == ACTION_STD_CANCEL);
+ if(!ret)
+ {
+ default_event_handler(action);
+ }
return ret;
}