summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 @@
33#include "splash.h" 33#include "splash.h"
34#include "settings.h" 34#include "settings.h"
35#include "pcmbuf.h" 35#include "pcmbuf.h"
36#include "misc.h"
36 37
37static int last_button = BUTTON_NONE|BUTTON_REL; /* allow the ipod wheel to 38static int last_button = BUTTON_NONE|BUTTON_REL; /* allow the ipod wheel to
38 work on startup */ 39 work on startup */
@@ -261,6 +262,10 @@ bool action_userabort(int timeout)
261{ 262{
262 int action = get_action_worker(CONTEXT_STD,timeout,NULL); 263 int action = get_action_worker(CONTEXT_STD,timeout,NULL);
263 bool ret = (action == ACTION_STD_CANCEL); 264 bool ret = (action == ACTION_STD_CANCEL);
265 if(!ret)
266 {
267 default_event_handler(action);
268 }
264 return ret; 269 return ret;
265} 270}
266 271