diff options
author | Timo Sirainen <cras@irssi.org> | 2001-03-17 02:32:32 +0000 |
---|---|---|
committer | cras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564> | 2001-03-17 02:32:32 +0000 |
commit | d9008ae249d0d58563a293cd866d15e9d33496d1 (patch) | |
tree | 2436a712f189ac50d41bbb7e64ef72fce935a7c6 /src/fe-text | |
parent | c3da7fa8abe93ee39b8913959d6d66bf6b296ed8 (diff) | |
download | irssi-d9008ae249d0d58563a293cd866d15e9d33496d1.zip |
%F = blinking on/off. several fixes to make blinking work better. some
hilight fixes.
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1403 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'src/fe-text')
-rw-r--r-- | src/fe-text/gui-printtext.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fe-text/gui-printtext.c b/src/fe-text/gui-printtext.c index a79033d5..e7e763b2 100644 --- a/src/fe-text/gui-printtext.c +++ b/src/fe-text/gui-printtext.c @@ -307,7 +307,7 @@ static void get_colors(int flags, int *fg, int *bg) *fg |= 8; } if (flags & PRINTFLAG_UNDERLINE) *fg |= ATTR_UNDERLINE; - if (flags & PRINTFLAG_BLINK) *bg |= 0x80; + if (flags & PRINTFLAG_BLINK) *bg |= 0x08; } static void linebuf_add(GUI_WINDOW_REC *gui, const char *str, int len) |