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

fix groupchat resizing when peerlist is off

This commit is contained in:
Jfreegman 2014-10-08 14:53:09 -04:00
parent 2094186c0f
commit 55ada8ad2f
No known key found for this signature in database
GPG Key ID: 3627F3144076AE63
2 changed files with 28 additions and 24 deletions

View File

@ -370,10 +370,12 @@ void on_window_resize(void)
if (w->help->active)
wclear(w->help->win);
if (w->is_groupchat)
if (w->is_groupchat) {
delwin(w->chatwin->sidebar);
else
w->chatwin->sidebar = NULL;
} else {
delwin(w->stb->topline);
}
delwin(w->chatwin->linewin);
delwin(w->chatwin->history);
@ -382,11 +384,13 @@ void on_window_resize(void)
w->window = newwin(y2, x2, 0, 0);
w->chatwin->linewin = subwin(w->window, CHATBOX_HEIGHT, x2, y2 - CHATBOX_HEIGHT, 0);
if (w->is_groupchat) {
if (w->show_peerlist) {
w->chatwin->history = subwin(w->window, y2 - CHATBOX_HEIGHT + 1, x2 - SIDEBAR_WIDTH - 1, 0, 0);
w->chatwin->sidebar = subwin(w->window, y2 - CHATBOX_HEIGHT + 1, SIDEBAR_WIDTH, 0, x2 - SIDEBAR_WIDTH);
} else {
w->chatwin->history = subwin(w->window, y2 - CHATBOX_HEIGHT + 1, x2, 0, 0);
if (w->is_chat)
w->stb->topline = subwin(w->window, 2, x2, 0, 0);
}