diff options
author | James Booth <boothj5@gmail.com> | 2016-05-15 00:55:19 +0100 |
---|---|---|
committer | James Booth <boothj5@gmail.com> | 2016-05-15 00:55:19 +0100 |
commit | d00615beba0e9f6d463b821c3a9406e412ebbfe2 (patch) | |
tree | f9edbce11180c78b8fac769b11c0582a06351207 /src/ui | |
parent | cf8452d95f7a172f0609cd2f647f23a52aeb62d1 (diff) | |
download | profani-tty-d00615beba0e9f6d463b821c3a9406e412ebbfe2.tar.gz |
Add /tray read on|off command
issue #786
Diffstat (limited to 'src/ui')
-rw-r--r-- | src/ui/console.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/ui/console.c b/src/ui/console.c index 7adc0147..fc0da30f 100644 --- a/src/ui/console.c +++ b/src/ui/console.c @@ -1188,6 +1188,11 @@ cons_tray_setting(void) cons_show("Tray icon (/tray) : ON"); else cons_show("Tray icon (/tray) : OFF"); + + if (prefs_get_boolean(PREF_TRAY_READ)) + cons_show("Tray icon read (/tray) : ON"); + else + cons_show("Tray icon read (/tray) : OFF"); } void |