about summary refs log tree commit diff stats
path: root/src/command
diff options
context:
space:
mode:
authorFrank Zschockelt <gith12@freakysoft.de>2016-10-29 17:27:32 +0200
committerFrank Zschockelt <gith12@freakysoft.de>2016-10-29 18:19:12 +0200
commitc0f099cb84e8903750f0ef79670d3cc368dd4c30 (patch)
tree5ef78ab6db6f0641d24eca0f04856886c3639429 /src/command
parenteac6b52e05c3d2c5c705b1f8c5a58f36358133df (diff)
downloadprofani-tty-c0f099cb84e8903750f0ef79670d3cc368dd4c30.tar.gz
Added main.help.header theme option
Diffstat (limited to 'src/command')
-rw-r--r--src/command/cmd_funcs.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/command/cmd_funcs.c b/src/command/cmd_funcs.c
index 35ae3119..145752ca 100644
--- a/src/command/cmd_funcs.c
+++ b/src/command/cmd_funcs.c
@@ -1483,9 +1483,9 @@ _cmd_help_cmd_list(const char *const tag)
     cons_show("");
     ProfWin *console = wins_get_console();
     if (tag) {
-        win_println(console, THEME_WHITE_BOLD, '-', "%s commands", tag);
+        win_println(console, THEME_HELP_HEADER, '-', "%s commands", tag);
     } else {
-        win_println(console, THEME_WHITE_BOLD, '-', "All commands");
+        win_println(console, THEME_HELP_HEADER, '-', "All commands");
     }
 
     GList *ordered_commands = NULL;