diff options
Diffstat (limited to 'src/ui/console.c')
-rw-r--r-- | src/ui/console.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/ui/console.c b/src/ui/console.c index 3f44f133..5c5afbd9 100644 --- a/src/ui/console.c +++ b/src/ui/console.c @@ -1195,7 +1195,11 @@ cons_tray_setting(void) cons_show("Tray icon read (/tray) : OFF"); int seconds = prefs_get_tray_timer(); - cons_show("Tray timer (/tray) : %d seconds", seconds); + if (seconds == 1) { + cons_show("Tray timer (/tray) : 1 second"); + } else { + cons_show("Tray timer (/tray) : %d seconds", seconds); + } } void |