about summary refs log tree commit diff stats
path: root/src/ui
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2016-05-15 02:15:45 +0100
committerJames Booth <boothj5@gmail.com>2016-05-15 02:15:45 +0100
commita04e34fddcaf6efa3fea9014e64b6bc13d5afba8 (patch)
treea2481eb3c7dac5e8e9909c8bfdc8f95b913e3e7e /src/ui
parentc6a6e3a51cb2fa1b036fa17cf89b8d9dab95c293 (diff)
downloadprofani-tty-a04e34fddcaf6efa3fea9014e64b6bc13d5afba8.tar.gz
Fix output for tray timer setting
Diffstat (limited to 'src/ui')
-rw-r--r--src/ui/console.c6
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
' href='#n145'>145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169