summaryrefslogtreecommitdiff
path: root/src/fe-common/core/themes.h
diff options
context:
space:
mode:
authorTimo Sirainen <cras@irssi.org>2001-03-12 19:43:32 +0000
committercras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564>2001-03-12 19:43:32 +0000
commit1d453ed92c17c657e1a9984b6566a6f761214237 (patch)
treef24e6c8bdcc6251123cbd3034951e3ce7287e4d6 /src/fe-common/core/themes.h
parent7ced2beab412c51b80155bd7ef98f9fff117f6d1 (diff)
downloadirssi-1d453ed92c17c657e1a9984b6566a6f761214237.zip
%n+bg color change doesn't anymore set foreground black. changed theme's
default_bold_color to default_real_color. Activity list printed first item with white always. Color redrawed itself every second. git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1381 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'src/fe-common/core/themes.h')
-rw-r--r--src/fe-common/core/themes.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/fe-common/core/themes.h b/src/fe-common/core/themes.h
index 3305c7bb..d1e0283f 100644
--- a/src/fe-common/core/themes.h
+++ b/src/fe-common/core/themes.h
@@ -15,7 +15,12 @@ typedef struct {
char *name;
time_t last_modify;
- int default_color, default_bold_color;
+ int default_color; /* default color to use with text with default
+ background. default is 0 which means the default
+ color set by terminal */
+ int default_real_color; /* default color to use with background set.
+ this shouldn't be 0, unless black is really
+ wanted. default is 7 (white). */
GHashTable *modules;
GSList *replace_keys;