From 900cb9a3e1e30ad910041289e21711375215ed81 Mon Sep 17 00:00:00 2001 From: trilader Date: Sun, 22 Nov 2020 19:19:28 +0100 Subject: [PATCH] Update message shown if no channels are configured --- main.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/main.cpp b/main.cpp index f6f4510..674f638 100644 --- a/main.cpp +++ b/main.cpp @@ -121,9 +121,9 @@ void draw_no_channels_msg() const std::string text("No configured channels.\n" "Press the following keys to add one:\n" - "a Add by name\n" - "A Add by ID\n" - "Or press h for help or ^q to quit."); + "a Add channel by name\n" + "A Add channel by ID\n" + "Or press F1 for help or C-q to quit."); { std::pair size = string_size(text); write_multiline_string((cols - size.first) / 2, (rows - size.second) / 2, text, get_attr(ASNormal));