From ee0df2846e7eebf0f91e9fd05f400ef57a554290 Mon Sep 17 00:00:00 2001 From: Curtis McEnroe Date: Tue, 7 Aug 2018 23:40:40 -0400 Subject: Reset attrs after addIRC Otherwise the marker inherits whatever was left on. --- ui.c | 1 + 1 file changed, 1 insertion(+) (limited to 'ui.c') diff --git a/ui.c b/ui.c index 3453242..adc752f 100644 --- a/ui.c +++ b/ui.c @@ -262,6 +262,7 @@ static void addIRC(WINDOW *win, const wchar_t *str) { break; case IRC_RESET: attr = A_NORMAL; pair = -1; } } + wattr_set(win, A_NORMAL, 0, NULL); } void uiTopic(const wchar_t *topic) { -- cgit 1.4.1