about summary refs log tree commit diff stats
path: root/src/ui
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2015-08-26 01:24:53 +0100
committerJames Booth <boothj5@gmail.com>2015-08-26 01:24:53 +0100
commit98ea744648497367aecf60436b17d7162733f104 (patch)
tree82cab73c3d7a3aa6e6ea87591f7ff615a3ce1830 /src/ui
parent1bf584793f54db23100e5c5815666a528230d745 (diff)
downloadprofani-tty-98ea744648497367aecf60436b17d7162733f104.tar.gz
Added /otr char and /pgp char
Diffstat (limited to 'src/ui')
-rw-r--r--src/ui/console.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/ui/console.c b/src/ui/console.c
index 6497e809..2b05448b 100644
--- a/src/ui/console.c
+++ b/src/ui/console.c
@@ -1453,6 +1453,9 @@ cons_show_otr_prefs(void)
     }
     prefs_free_string(log_value);
 
+    char ch = prefs_get_otr_char();
+    cons_show("OTR char (/otr char)     : %c", ch);
+
     cons_alert();
 }
 
@@ -1472,6 +1475,9 @@ cons_show_pgp_prefs(void)
     }
     prefs_free_string(log_value);
 
+    char ch = prefs_get_pgp_char();
+    cons_show("PGP char (/pgp char)     : %c", ch);
+
     cons_alert();
 }