diff options
| author | Jonathan Gordon <rockbox@jdgordon.info> | 2011-02-27 09:30:33 +0000 |
|---|---|---|
| committer | Jonathan Gordon <rockbox@jdgordon.info> | 2011-02-27 09:30:33 +0000 |
| commit | 9501986047056c9f6ca954817ae597e302028f2e (patch) | |
| tree | 879a6011d27a3864138cd08d1734f65886b7853b /apps/plugins/random_folder_advance_config.c | |
| parent | 8e9f3bbecc5615e3e43835cc025829b29efc3aa6 (diff) | |
| download | rockbox-9501986047056c9f6ca954817ae597e302028f2e.zip rockbox-9501986047056c9f6ca954817ae597e302028f2e.tar.gz rockbox-9501986047056c9f6ca954817ae597e302028f2e.tar.bz2 rockbox-9501986047056c9f6ca954817ae597e302028f2e.tar.xz | |
Blindly forcing stylus mode on plugin entry for an arbitrary subset of touch targets is a *REALLY BAD IDEA* so do it properly so we dont have to revert any commits.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29417 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/random_folder_advance_config.c')
| -rw-r--r-- | apps/plugins/random_folder_advance_config.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/apps/plugins/random_folder_advance_config.c b/apps/plugins/random_folder_advance_config.c index f66aa40..e15cade 100644 --- a/apps/plugins/random_folder_advance_config.c +++ b/apps/plugins/random_folder_advance_config.c @@ -622,6 +622,9 @@ enum plugin_status main_menu(void) enum plugin_status plugin_start(const void* parameter) { (void)parameter; +#ifdef HAVE_TOUCHSCREEN + rb->touchscreen_set_mode(rb->global_settings->touch_mode); +#endif cancel = false; |