1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-09-29 19:56:07 -04:00

Fixed window number for notify and room incoming message

This commit is contained in:
James Booth 2013-08-28 21:34:00 +01:00
parent c08e85193c
commit a81d69dc7f

View File

@ -345,7 +345,7 @@ ui_incoming_msg(const char * const from, const char * const message,
}
}
int ui_index = num + 1;
int ui_index = num;
if (ui_index == 10) {
ui_index = 0;
}
@ -1226,7 +1226,7 @@ ui_room_message(const char * const room_jid, const char * const nick,
window->unread++;
}
int ui_index = num + 1;
int ui_index = num;
if (ui_index == 10) {
ui_index = 0;
}