Reset attrs after addIRC

Otherwise the marker inherits whatever was left on.
master
Curtis McEnroe 2018-08-07 23:40:40 -04:00
parent 9114d0555c
commit ee0df2846e
No known key found for this signature in database
GPG Key ID: CEA2F97ADCFCD77C
1 changed files with 1 additions and 0 deletions

1
ui.c
View File

@ -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) {