From f94701aff3c56c642a8a0d589e4f901485cbd48e Mon Sep 17 00:00:00 2001 From: Christian Rocha Date: Sat, 1 Feb 2020 21:00:03 -0500 Subject: [PATCH] I think the cursor move to 1,1 is implicit via altscreen --- examples/fullscreen/main.go | 1 - 1 file changed, 1 deletion(-) diff --git a/examples/fullscreen/main.go b/examples/fullscreen/main.go index 27a9707..6774b55 100644 --- a/examples/fullscreen/main.go +++ b/examples/fullscreen/main.go @@ -17,7 +17,6 @@ type tickMsg struct{} func main() { termenv.AltScreen() - termenv.MoveCursor(1, 1) defer termenv.ExitAltScreen() err := tea.NewProgram(initialize, update, view, subscriptions).Start() if err != nil {