summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
Diffstat (limited to 'apps')
-rw-r--r--apps/plugins/lib/playback_control.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/plugins/lib/playback_control.c b/apps/plugins/lib/playback_control.c
index 38021bc95e..bc8f1c735d 100644
--- a/apps/plugins/lib/playback_control.c
+++ b/apps/plugins/lib/playback_control.c
@@ -61,14 +61,14 @@ static bool volume(void)
61{ 61{
62 const struct settings_list* vol = 62 const struct settings_list* vol =
63 api->find_setting(&api->global_settings->volume, NULL); 63 api->find_setting(&api->global_settings->volume, NULL);
64 return api->option_screen((struct settings_list*)vol, false, NULL); 64 return api->option_screen((struct settings_list*)vol, false, "Volume");
65} 65}
66 66
67static bool shuffle(void) 67static bool shuffle(void)
68{ 68{
69 const struct settings_list* shuffle = 69 const struct settings_list* shuffle =
70 api->find_setting(&api->global_settings->playlist_shuffle, NULL); 70 api->find_setting(&api->global_settings->playlist_shuffle, NULL);
71 return api->option_screen((struct settings_list*)shuffle, false, NULL); 71 return api->option_screen((struct settings_list*)shuffle, false, "Shuffle");
72} 72}
73 73
74static bool repeat_mode(void) 74static bool repeat_mode(void)
@@ -77,7 +77,7 @@ static bool repeat_mode(void)
77 api->find_setting(&api->global_settings->repeat_mode, NULL); 77 api->find_setting(&api->global_settings->repeat_mode, NULL);
78 int old_repeat = api->global_settings->repeat_mode; 78 int old_repeat = api->global_settings->repeat_mode;
79 79
80 api->option_screen((struct settings_list*)repeat, false, NULL); 80 api->option_screen((struct settings_list*)repeat, false, "Repeat");
81 81
82 if (old_repeat != api->global_settings->repeat_mode && 82 if (old_repeat != api->global_settings->repeat_mode &&
83 (api->audio_status() & AUDIO_STATUS_PLAY)) 83 (api->audio_status() & AUDIO_STATUS_PLAY))