1
0
mirror of https://github.com/Tha14/toxic.git synced 2024-07-01 15:57:45 +02:00

small fix

This commit is contained in:
Jfreegman 2014-07-05 15:20:33 -04:00
parent 2f904371ae
commit 3fa8c4be0b
No known key found for this signature in database
GPG Key ID: 3627F3144076AE63

View File

@ -839,14 +839,14 @@ static void chat_onDraw(ToxWindow *self, Tox *m)
wrefresh(self->window);
#ifdef _SUPPORT_AUDIO
if (ctx->infobox.active)
if (ctx->infobox.active) {
draw_infobox(self);
wrefresh(self->window);
}
#endif
if (self->help->active) {
wrefresh(self->window);
if (self->help->active)
help_onDraw(self);
}
}
static void chat_onInit(ToxWindow *self, Tox *m)