You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The code in gtevent.c says in the comments that you don't think the halfdelay() function can be disabled once enabled. But in reality it appears it can be done with cbreak() (or nocbreak() if you need to use that mode instead). I think that the program starts off in cbreak() mode, so a call to the function should disable halfdelay() again. You don't have to keep polling uselessly every 10 seconds.
I have not fixed the code because I am not very skilled with ncurses, but I might attempt it eventually if it starts to bother me. Just filing this report as a heads-up.
The text was updated successfully, but these errors were encountered:
The code in
gtevent.c
says in the comments that you don't think thehalfdelay()
function can be disabled once enabled. But in reality it appears it can be done withcbreak()
(ornocbreak()
if you need to use that mode instead). I think that the program starts off incbreak()
mode, so a call to the function should disablehalfdelay()
again. You don't have to keep polling uselessly every 10 seconds.I have not fixed the code because I am not very skilled with ncurses, but I might attempt it eventually if it starts to bother me. Just filing this report as a heads-up.
The text was updated successfully, but these errors were encountered: