summaryrefslogtreecommitdiffstats
path: root/src/tui
diff options
context:
space:
mode:
Diffstat (limited to 'src/tui')
-rw-r--r--src/tui/light.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/tui/light.go b/src/tui/light.go
index be6950c8..e690ef9e 100644
--- a/src/tui/light.go
+++ b/src/tui/light.go
@@ -251,8 +251,9 @@ func (r *LightRenderer) updateTerminalSize() {
func (r *LightRenderer) getch(nonblock bool) (int, bool) {
b := make([]byte, 1)
+ fd := r.fd()
util.SetNonblock(r.ttyin, nonblock)
- _, err := r.ttyin.Read(b)
+ _, err := util.Read(fd, b)
if err != nil {
return 0, false
}