Skip to content

Commit 6e5c7b8

Browse files
committed
💄 Remove the cursor line highlight from the text areas
1 parent 607b0b3 commit 6e5c7b8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/braindrop/app/screens/raindrop_input.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -173,9 +173,9 @@ def compose(self) -> ComposeResult:
173173
validators=[Length(1, failure_description="A title is required")],
174174
)
175175
yield Label("Excerpt:")
176-
yield TextArea(id="excerpt")
176+
yield TextArea(id="excerpt", highlight_cursor_line=False)
177177
yield Label("Note:")
178-
yield TextArea(id="note", language="markdown")
178+
yield TextArea(id="note", language="markdown", highlight_cursor_line=False)
179179
yield Label("URL:")
180180
yield Input(
181181
placeholder="The URL of the link for the Raindrop",

0 commit comments

Comments
 (0)