about summary refs log tree commit diff stats
path: root/src/config/theme.c
diff options
context:
space:
mode:
authorMichael Vetter <jubalh@iodoru.org>2019-08-23 14:24:44 +0200
committerMichael Vetter <jubalh@iodoru.org>2019-08-23 14:24:44 +0200
commitc2a565c2ec3a9f22ce6c4c97ef5ba219981462a5 (patch)
treeb37eed9a1dbd96b8c870ca3134a5f359fb39a450 /src/config/theme.c
parent42fb1935c4d34889d3939903eefb9b5a602727fd (diff)
downloadprofani-tty-c2a565c2ec3a9f22ce6c4c97ef5ba219981462a5.tar.gz
Notify trying to load 256 colour theme in incapable terminal
Diffstat (limited to 'src/config/theme.c')
-rw-r--r--src/config/theme.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/config/theme.c b/src/config/theme.c
index e0c9d541..ab0041d9 100644
--- a/src/config/theme.c
+++ b/src/config/theme.c
@@ -52,6 +52,7 @@
 #include "config/theme.h"
 #include "config/preferences.h"
 #include "config/color.h"
+#include "ui/ui.h"
 
 static GString *theme_loc;
 static GKeyFile *theme;
@@ -809,7 +810,7 @@ theme_attrs(theme_item_t attrs)
     // lookup colour pair
     result = color_pair_cache_get(lookup_str->str);
     if (result < 0) {
-        log_error("Invalid color <%s>", lookup_str->str);
+        cons_show("Unable to load colour theme");
         result = 0;
     }
     g_string_free(lookup_str, TRUE);