1
0
Fork 0
forked from len0rd/rockbox

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
This commit is contained in:
Jonathan Gordon 2011-02-27 09:30:33 +00:00
parent 8e9f3bbecc
commit 9501986047
2 changed files with 6 additions and 0 deletions

View file

@ -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;