mirror of https://github.com/xzeldon/htop.git
Use set_escdelay() to avoid problems with ESCDELAY as a macro.
This commit is contained in:
parent
6c1be63291
commit
645057d81a
|
@ -116,7 +116,7 @@ void InfoScreen_run(InfoScreen* this) {
|
|||
|
||||
if (this->inc->active)
|
||||
move(LINES-1, CRT_cursorX);
|
||||
ESCDELAY = 25;
|
||||
set_escdelay(25);
|
||||
int ch = getch();
|
||||
|
||||
if (ch == ERR) {
|
||||
|
|
|
@ -189,7 +189,7 @@ void ScreenManager_run(ScreenManager* this, Panel** lastFocus, int* lastKey) {
|
|||
}
|
||||
|
||||
int prevCh = ch;
|
||||
ESCDELAY = 25;
|
||||
set_escdelay(25);
|
||||
ch = getch();
|
||||
|
||||
HandlerResult result = IGNORED;
|
||||
|
|
Loading…
Reference in New Issue