1
0
mirror of https://github.com/irssi/irssi.git synced 2024-07-07 02:54:19 -04:00

Small bugfix with resizing window.

git-svn-id: http://svn.irssi.org/repos/irssi/trunk@466 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
Timo Sirainen 2000-07-15 14:30:59 +00:00 committed by cras
parent 5707140938
commit 92e5447ca7

View File

@ -789,7 +789,7 @@ void gui_window_resize(WINDOW_REC *window, int ychange, int xchange)
if (gui->empty_linecount >= 0)
ychange = 0;
else {
ychange -= gui->empty_linecount;
ychange = gui->empty_linecount;
gui->empty_linecount = 0;
}
}