diff --git a/cursor/cursor.go b/cursor/cursor.go index 9ad445e..b365d77 100644 --- a/cursor/cursor.go +++ b/cursor/cursor.go @@ -201,7 +201,7 @@ func (m *Model) SetChar(char string) { // View displays the cursor. func (m Model) View() string { if m.Blink { - return m.TextStyle.Render(m.char) + return m.TextStyle.Inline(true).Render(m.char) } return m.Style.Inline(true).Reverse(true).Render(m.char) }