Browse Source

tui: fix cursor position offset in home screen

Dax Raad 5 months ago
parent
commit
5c67bebf86
1 changed files with 1 additions and 1 deletions
  1. 1 1
      packages/tui/internal/tui/tui.go

+ 1 - 1
packages/tui/internal/tui/tui.go

@@ -1073,7 +1073,7 @@ func (a Model) home() (string, int, int) {
 		)
 	}
 
-	return mainLayout, editorX + 5, editorY + 2
+	return mainLayout, editorX + 5, editorY + 3
 }
 
 func (a Model) chat() (string, int, int) {