1
0
mirror of https://github.com/Tha14/toxic.git synced 2025-07-01 22:36:46 +02:00

fix help popup flickering issue on some terminals

This commit is contained in:
Jfreegman
2014-07-05 14:46:16 -04:00
parent de1e61bd5a
commit 455eba3bfd
6 changed files with 13 additions and 11 deletions

View File

@ -334,6 +334,9 @@ void on_window_resize(void)
if (windows[i].is_friendlist)
continue;
if (w->help->active)
wclear(w->help->win);
if (w->is_groupchat)
delwin(w->chatwin->sidebar);
else
@ -439,7 +442,6 @@ void draw_active_window(Tox *m)
touchwin(a->window);
a->onDraw(a, m);
wrefresh(a->window);
/* Handle input */
bool ltr;