diff options
| author | Bertrik Sikken <bertrik@sikken.nl> | 2010-10-10 14:07:56 +0000 |
|---|---|---|
| committer | Bertrik Sikken <bertrik@sikken.nl> | 2010-10-10 14:07:56 +0000 |
| commit | 8ad85ba291efab4056b4a75e3d7a30dc6db16ac4 (patch) | |
| tree | eebd6f6d33151c169efe830426a42ac680e61d34 /apps | |
| parent | 561999ebfff8d03d89140df20e3b687d0af77110 (diff) | |
| download | rockbox-8ad85ba291efab4056b4a75e3d7a30dc6db16ac4.zip rockbox-8ad85ba291efab4056b4a75e3d7a30dc6db16ac4.tar.gz rockbox-8ad85ba291efab4056b4a75e3d7a30dc6db16ac4.tar.bz2 rockbox-8ad85ba291efab4056b4a75e3d7a30dc6db16ac4.tar.xz | |
Fix for FS #10097 - Sometimes keys do work after exiting plugins.
This removes the call to button_clear_queue which interfered with the mechanism in action.c to wait for a key
release event when the button context is changed.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28232 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
| -rw-r--r-- | apps/plugin.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/apps/plugin.c b/apps/plugin.c index 28c5854..6c402f6 100644 --- a/apps/plugin.c +++ b/apps/plugin.c @@ -828,8 +828,6 @@ int plugin_load(const char* plugin, const void* parameter) touchscreen_set_mode(global_settings.touch_mode); #endif - button_clear_queue(); - #ifdef HAVE_LCD_BITMAP lcd_setfont(FONT_UI); #if LCD_DEPTH > 1 |