diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2005-02-26 11:52:40 +0000 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2005-02-26 11:52:40 +0000 |
commit | 64c33a829541791298486504e2c1ec451cf49508 (patch) | |
tree | 51de856dfe726f91aa752acb4759f509a472c5ac /src/gui/gui.h | |
parent | 7596736ae9c8cf364fe937353f4db6a9365ee8cb (diff) | |
download | weechat-64c33a829541791298486504e2c1ec451cf49508.zip |
Improved display: align messages after prefixes (for example: "-@-" or "-=-")
Diffstat (limited to 'src/gui/gui.h')
-rw-r--r-- | src/gui/gui.h | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/src/gui/gui.h b/src/gui/gui.h index 06edb434b..7c7ddbc6e 100644 --- a/src/gui/gui.h +++ b/src/gui/gui.h @@ -78,11 +78,12 @@ #define BUFFER_IS_PRIVATE(buffer) (CHANNEL(buffer) && (CHANNEL(buffer)->type == CHAT_PRIVATE)) #define MSG_TYPE_TIME 1 -#define MSG_TYPE_NICK 2 -#define MSG_TYPE_INFO 4 -#define MSG_TYPE_MSG 8 -#define MSG_TYPE_HIGHLIGHT 16 -#define MSG_TYPE_NOLOG 32 +#define MSG_TYPE_PREFIX 2 +#define MSG_TYPE_NICK 4 +#define MSG_TYPE_INFO 8 +#define MSG_TYPE_MSG 16 +#define MSG_TYPE_HIGHLIGHT 32 +#define MSG_TYPE_NOLOG 64 #define gui_printf_color(buffer, color, fmt, argz...) \ gui_printf_color_type(buffer, MSG_TYPE_INFO, color, fmt, ##argz) |