Skip to content

Commit

Permalink
Fix active border on selection box
Browse files Browse the repository at this point in the history
  • Loading branch information
Toby Padilla committed Aug 20, 2021
1 parent f779018 commit b49194b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tui/bubble.go
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ func (b *Bubble) viewForBox(i int) string {
var s lipgloss.Style
s = b.styles.Menu
if isActive {
s.Copy().BorderForeground(b.styles.ActiveBorderColor)
s = s.Copy().BorderForeground(b.styles.ActiveBorderColor)
}
return s.Render(box.View())
case *repo.Bubble:
Expand Down

0 comments on commit b49194b

Please sign in to comment.