diff options
| author | Jonathan Gordon <rockbox@jdgordon.info> | 2011-07-20 01:30:29 +0000 |
|---|---|---|
| committer | Jonathan Gordon <rockbox@jdgordon.info> | 2011-07-20 01:30:29 +0000 |
| commit | 4983d052a0d73340d09086a796b4ccbb45dfd88b (patch) | |
| tree | d330148fe013061dd86f98bfec09cc4ff3f46e98 /apps/gui | |
| parent | ded03f43f2247f90a3919a8d1fe5e5be17a9b7b2 (diff) | |
| download | rockbox-4983d052a0d73340d09086a796b4ccbb45dfd88b.zip rockbox-4983d052a0d73340d09086a796b4ccbb45dfd88b.tar.gz rockbox-4983d052a0d73340d09086a796b4ccbb45dfd88b.tar.bz2 rockbox-4983d052a0d73340d09086a796b4ccbb45dfd88b.tar.xz | |
Remove to top/bottom quickscreen defaults.
As constantly discussed in IRC, it is insane that dirfilter and party mode are defaults on the quickscreen, both have caused countless problems for users accidentaly enabling them.
This wont change anything for users who have changed their setting, only for people who left it default
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30176 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/gui')
| -rw-r--r-- | apps/gui/quickscreen.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/apps/gui/quickscreen.c b/apps/gui/quickscreen.c index 3922c94..e97d821 100644 --- a/apps/gui/quickscreen.c +++ b/apps/gui/quickscreen.c @@ -392,8 +392,7 @@ bool quick_screen_quick(int button_enter) int oldrepeat = global_settings.repeat_mode; qs.items[QUICKSCREEN_TOP] = - get_setting(global_settings.qs_items[QUICKSCREEN_TOP], - find_setting(&global_settings.party_mode, NULL)); + get_setting(global_settings.qs_items[QUICKSCREEN_TOP], NULL); qs.items[QUICKSCREEN_LEFT] = get_setting(global_settings.qs_items[QUICKSCREEN_LEFT], find_setting(&global_settings.playlist_shuffle, NULL)); @@ -401,8 +400,7 @@ bool quick_screen_quick(int button_enter) get_setting(global_settings.qs_items[QUICKSCREEN_RIGHT], find_setting(&global_settings.repeat_mode, NULL)); qs.items[QUICKSCREEN_BOTTOM] = - get_setting(global_settings.qs_items[QUICKSCREEN_BOTTOM], - find_setting(&global_settings.dirfilter, NULL)); + get_setting(global_settings.qs_items[QUICKSCREEN_BOTTOM], NULL); qs.callback = NULL; if (gui_syncquickscreen_run(&qs, button_enter)) |