summaryrefslogtreecommitdiff
path: root/client/ui.go
diff options
context:
space:
mode:
Diffstat (limited to 'client/ui.go')
-rw-r--r--client/ui.go7
1 files changed, 7 insertions, 0 deletions
diff --git a/client/ui.go b/client/ui.go
index 3cba7e2..8331799 100644
--- a/client/ui.go
+++ b/client/ui.go
@@ -57,6 +57,13 @@ func (a *application) onInput(ev tui.Event) {
}
}
+ if ev.Key != 0 {
+ switch cl := a.currentWindow.(type) {
+ case channelLocation:
+ a.windowCache.Get(cl).(*channelWindow).fingersPresent()
+ }
+ }
+
buf := win.Buffer()
scroll := tui.Size().Height - 5
switch ev.Key {