summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--apps/playlist.c2
-rw-r--r--apps/playlist_catalog.c4
2 files changed, 3 insertions, 3 deletions
diff --git a/apps/playlist.c b/apps/playlist.c
index 53becb9fc1..f6d536fa25 100644
--- a/apps/playlist.c
+++ b/apps/playlist.c
@@ -2916,7 +2916,7 @@ int playlist_insert_directory(struct playlist_info* playlist,
if (queue)
count_str = ID2P(LANG_PLAYLIST_QUEUE_COUNT);
else
- count_str = ID2P(LANG_PLAYLIST_INSERT_COUNT);
+ count_str = ID2P(LANG_PLAYLIST_INSERT_COUNT);
display_playlist_count(0, count_str, false);
diff --git a/apps/playlist_catalog.c b/apps/playlist_catalog.c
index 15d74fa363..cadad9f464 100644
--- a/apps/playlist_catalog.c
+++ b/apps/playlist_catalog.c
@@ -319,8 +319,8 @@ static int display_playlists(char* playlist, bool view)
static void display_insert_count(int count)
{
static long talked_tick = 0;
- if(count && (talked_tick == 0
- || TIME_AFTER(current_tick, talked_tick+5*HZ)))
+ if(global_settings.talk_menu && count &&
+ (talked_tick == 0 || TIME_AFTER(current_tick, talked_tick+5*HZ)))
{
talked_tick = current_tick;
talk_number(count, false);