1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-06-23 21:45:30 +00:00

Fixed showing active console after login fail

This commit is contained in:
James Booth 2013-08-28 22:07:40 +01:00
parent 88d4cf6e94
commit 30a4054937

View File

@ -87,6 +87,13 @@ status_bar_refresh(void)
if (dirty) {
_status_bar_update_time();
int i;
for(i = 1; i < 12; i++) {
if (is_new[i])
status_bar_new(i);
else if (is_active[i])
status_bar_active(i);
}
wrefresh(status_bar);
inp_put_back();
dirty = FALSE;