Simplify history selection: remove styled background, use plain arrow marker

This commit is contained in:
2025-11-07 12:41:34 +00:00
parent a8ce8c4457
commit 0a5fba166d
2 changed files with 3 additions and 5 deletions

BIN
dbbackup

Binary file not shown.

View File

@ -214,12 +214,10 @@ func (m HistoryViewModel) View() string {
entry.Status) entry.Status)
if m.cursor == i { if m.cursor == i {
// Highlighted selection - render without background extending to full width // Simple selection marker without styled background
s.WriteString("→ ") s.WriteString(fmt.Sprintf("→ %s\n", line))
s.WriteString(selectedStyle.Render(line))
s.WriteString("\n")
} else { } else {
s.WriteString(" " + line + "\n") s.WriteString(fmt.Sprintf(" %s\n", line))
} }
} }