From 3fa8c4be0bbd9eebd802f24839c4b1d536bd9e6f Mon Sep 17 00:00:00 2001 From: Jfreegman Date: Sat, 5 Jul 2014 15:20:33 -0400 Subject: [PATCH] small fix --- src/chat.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/chat.c b/src/chat.c index 95075d2..5c88c16 100644 --- a/src/chat.c +++ b/src/chat.c @@ -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)