diff options
author | James Booth <boothj5@gmail.com> | 2014-11-16 21:56:19 +0000 |
---|---|---|
committer | James Booth <boothj5@gmail.com> | 2014-11-16 21:56:19 +0000 |
commit | 976e5aac0a9905dbaa8f150ed7107011b9f87373 (patch) | |
tree | a243735eb2e4c51a9cf016d3493dc6e1f2d84791 /src/command | |
parent | ed4391ec8a3190769917358e4fa68106c9e9891d (diff) | |
download | profani-tty-976e5aac0a9905dbaa8f150ed7107011b9f87373.tar.gz |
Added support for bold theme settings
Diffstat (limited to 'src/command')
-rw-r--r-- | src/command/commands.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/command/commands.c b/src/command/commands.c index bbb59cdf..68d70779 100644 --- a/src/command/commands.c +++ b/src/command/commands.c @@ -715,6 +715,7 @@ cmd_theme(gchar **args, struct cmd_help_t help) } else if (theme_load(args[1])) { ui_load_colours(); prefs_set_string(PREF_THEME, args[1]); + ui_redraw(); cons_show("Loaded theme: %s", args[1]); } else { cons_show("Couldn't find theme: %s", args[1]); |