about summary refs log tree commit diff stats
path: root/src/ui
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2016-05-23 23:53:44 +0100
committerJames Booth <boothj5@gmail.com>2016-05-23 23:53:44 +0100
commit6559263b2fed1edc6b004dc3e50697600e450b9b (patch)
tree7b17f7d326ada6abb958e362fd76c8b4abc019f7 /src/ui
parent0edd4309257a8372761f44cbd576b027d1b9766c (diff)
downloadprofani-tty-6559263b2fed1edc6b004dc3e50697600e450b9b.tar.gz
Option to bookmark room invites
issue #813
Diffstat (limited to 'src/ui')
-rw-r--r--src/ui/console.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/ui/console.c b/src/ui/console.c
index a5ff3a76..ebbddd70 100644
--- a/src/ui/console.c
+++ b/src/ui/console.c
@@ -717,6 +717,14 @@ cons_show_bookmarks(const GList *list)
             list = g_list_next(list);
         }
     }
+
+    cons_show("");
+    if (prefs_get_boolean(PREF_BOOKMARK_INVITE)) {
+        cons_show("Automatic invite bookmarking (/bookmark invites): ON");
+    } else {
+        cons_show("Automatic invite bookmarking (/bookmark invites): OFF");
+    }
+
     cons_alert();
 }