From e084c16ba85931048bc81a63c8352d6c063b7cc9 Mon Sep 17 00:00:00 2001 From: Gregory Rudolph Date: Tue, 22 Oct 2019 09:18:27 -0400 Subject: [PATCH] Bugfix #24: Set cursor of popupView to 0,0 to avoid strange input bugs --- main.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/main.go b/main.go index 6805fb5..cea2ab1 100644 --- a/main.go +++ b/main.go @@ -196,8 +196,7 @@ func popupView(viewName string) { if err != nil { return err } - viewX, viewY := updatingView.Size() - updatingView.MoveCursor(viewX, viewY, true) + updatingView.MoveCursor(0, 0, true) return nil