This commit is contained in:
anon
2023-08-01 19:36:53 +02:00
parent 787aa3279e
commit e7ea3e3e95
8 changed files with 101 additions and 32 deletions

View File

@ -681,6 +681,8 @@ static inline void screenmode_event_loop(void){
display();
c = mygetch();
input_available = 1;
rl_callback_read_char();
/* exit if the quit command is entered */
if (c == EOF || c == ctrl('D')) {
@ -691,6 +693,5 @@ static inline void screenmode_event_loop(void){
continue;
}
command(c);
}
}