diff options
author | Emanuele Giaquinta <exg@irssi.org> | 2008-02-01 16:02:56 +0000 |
---|---|---|
committer | exg <exg@dbcabf3a-b0e7-0310-adc4-f8d773084564> | 2008-02-01 16:02:56 +0000 |
commit | 036b1d3300eea87bbd1666886ee843384ee0b848 (patch) | |
tree | 802b87a7b648986f8c00355356b74441872fe065 /src/fe-common | |
parent | 2fbde1a24ec1019a874234a5051bba10f585de52 (diff) | |
download | irssi-036b1d3300eea87bbd1666886ee843384ee0b848.zip |
Reset colors and attributes on newline.
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@4694 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'src/fe-common')
-rw-r--r-- | src/fe-common/core/formats.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/fe-common/core/formats.c b/src/fe-common/core/formats.c index 93ee6211..cdc19610 100644 --- a/src/fe-common/core/formats.c +++ b/src/fe-common/core/formats.c @@ -986,8 +986,12 @@ void format_send_to_gui(TEXT_DEST_REC *dest, const char *text) flags &= ~(GUI_PRINT_FLAG_INDENT|GUI_PRINT_FLAG_CLRTOEOL); } - if (type == '\n') + if (type == '\n') { format_newline(dest->window); + fgcolor = theme->default_color; + bgcolor = -1; + flags &= GUI_PRINT_FLAG_INDENT|GUI_PRINT_FLAG_MONOSPACE; + } if (*ptr == '\0') break; |