diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2010-02-24 22:54:07 +0100 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2010-02-24 22:54:07 +0100 |
commit | eabf21098d88061799709b9ff3cf5eeb90029dd6 (patch) | |
tree | 84ac3d34e99dbd53ab5b15f34c7cbf69f321b516 /src/gui/gui-color.h | |
parent | 5868fc3c6d11b8a607b87936e0d01e1e07554d20 (diff) | |
download | weechat-eabf21098d88061799709b9ff3cf5eeb90029dd6.zip |
Fix display of color in input when it is scrolled
Diffstat (limited to 'src/gui/gui-color.h')
-rw-r--r-- | src/gui/gui-color.h | 38 |
1 files changed, 20 insertions, 18 deletions
diff --git a/src/gui/gui-color.h b/src/gui/gui-color.h index 9917d42bb..71c102427 100644 --- a/src/gui/gui-color.h +++ b/src/gui/gui-color.h @@ -91,24 +91,26 @@ enum t_gui_color_enum #define GUI_COLOR_CUSTOM_BAR_DELIM (gui_color_get_custom ("bar_delim")) #define GUI_COLOR_CUSTOM_BAR_BG (gui_color_get_custom ("bar_bg")) -#define GUI_COLOR_FG_CHAR 'F' -#define GUI_COLOR_FG_STR "F" -#define GUI_COLOR_BG_CHAR 'B' -#define GUI_COLOR_BG_STR "B" -#define GUI_COLOR_FG_BG_CHAR '*' -#define GUI_COLOR_FG_BG_STR "*" -#define GUI_COLOR_BAR_CHAR 'b' -#define GUI_COLOR_BAR_STR "b" -#define GUI_COLOR_BAR_FG_CHAR 'F' -#define GUI_COLOR_BAR_FG_STR "F" -#define GUI_COLOR_BAR_DELIM_CHAR 'D' -#define GUI_COLOR_BAR_DELIM_STR "D" -#define GUI_COLOR_BAR_BG_CHAR 'B' -#define GUI_COLOR_BAR_BG_STR "B" -#define GUI_COLOR_BAR_START_INPUT_CHAR '_' -#define GUI_COLOR_BAR_START_INPUT_STR "_" -#define GUI_COLOR_BAR_MOVE_CURSOR_CHAR '#' -#define GUI_COLOR_BAR_MOVE_CURSOR_STR "#" +#define GUI_COLOR_FG_CHAR 'F' +#define GUI_COLOR_FG_STR "F" +#define GUI_COLOR_BG_CHAR 'B' +#define GUI_COLOR_BG_STR "B" +#define GUI_COLOR_FG_BG_CHAR '*' +#define GUI_COLOR_FG_BG_STR "*" +#define GUI_COLOR_BAR_CHAR 'b' +#define GUI_COLOR_BAR_STR "b" +#define GUI_COLOR_BAR_FG_CHAR 'F' +#define GUI_COLOR_BAR_FG_STR "F" +#define GUI_COLOR_BAR_DELIM_CHAR 'D' +#define GUI_COLOR_BAR_DELIM_STR "D" +#define GUI_COLOR_BAR_BG_CHAR 'B' +#define GUI_COLOR_BAR_BG_STR "B" +#define GUI_COLOR_BAR_START_INPUT_CHAR '_' +#define GUI_COLOR_BAR_START_INPUT_STR "_" +#define GUI_COLOR_BAR_START_INPUT_HIDDEN_CHAR '-' +#define GUI_COLOR_BAR_START_INPUT_HIDDEN_STR "-" +#define GUI_COLOR_BAR_MOVE_CURSOR_CHAR '#' +#define GUI_COLOR_BAR_MOVE_CURSOR_STR "#" /* color structure */ |