mirror of
https://github.com/irssi/irssi.git
synced 2024-12-04 14:46:39 -05: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:
parent
f3f8eb620a
commit
1cc3891821
@ -322,7 +322,7 @@ void readline(void)
|
||||
|
||||
for (;;) {
|
||||
key = getch();
|
||||
if (key == ERR) break;
|
||||
if (key == ERR || key == KEY_RESIZE) break;
|
||||
|
||||
handle_key(key);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user