1
0
mirror of https://github.com/Rudi9719/kbtui.git synced 2026-08-05 12:36:08 +00:00

Bugfix #24: Set cursor of popupView to 0,0 to avoid strange input bugs

This commit is contained in:
2019-10-22 09:18:27 -04:00
parent 2dd635669c
commit e084c16ba8
+1 -2
View File
@@ -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