diff options
Diffstat (limited to 'apps/sound_menu.c')
| -rw-r--r-- | apps/sound_menu.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/sound_menu.c b/apps/sound_menu.c index 67e6999..23d4c81 100644 --- a/apps/sound_menu.c +++ b/apps/sound_menu.c @@ -87,7 +87,8 @@ bool set_sound(char* string, { snprintf(str,sizeof str,"%d %s ", val, unit); } - talk_value(val, talkunit, false); /* speak it */ + if (global_settings.talk_menu) + talk_value(val, talkunit, false); /* speak it */ } lcd_puts(0,1,str); status_draw(true); |