fix: file command visual bug (#959)

This commit is contained in:
Aiden Cline 2025-07-14 07:03:02 -05:00 committed by GitHub
parent 139d6e2818
commit 052a1e7514
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -131,7 +131,11 @@ func (f *findDialogComponent) View() string {
Render(inputView)
listView := f.list.View()
return styles.NewStyle().Height(12).Render(inputView + "\n" + listView)
return styles.NewStyle().
Height(12).
Background(t.BackgroundElement()).
Width(f.width - 4).
Render(inputView + "\n" + listView)
}
func (f *findDialogComponent) SetWidth(width int) {