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

KEY_RESIZE is sent when screen is resized, ignore it.

git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1473 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
Timo Sirainen 2001-05-11 13:01:46 +00:00 committed by cras
parent f3f8eb620a
commit 1cc3891821

View File

@ -322,7 +322,7 @@ void readline(void)
for (;;) {
key = getch();
if (key == ERR) break;
if (key == ERR || key == KEY_RESIZE) break;
handle_key(key);
}