We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 607b0b3 commit 6e5c7b8Copy full SHA for 6e5c7b8
src/braindrop/app/screens/raindrop_input.py
@@ -173,9 +173,9 @@ def compose(self) -> ComposeResult:
173
validators=[Length(1, failure_description="A title is required")],
174
)
175
yield Label("Excerpt:")
176
- yield TextArea(id="excerpt")
+ yield TextArea(id="excerpt", highlight_cursor_line=False)
177
yield Label("Note:")
178
- yield TextArea(id="note", language="markdown")
+ yield TextArea(id="note", language="markdown", highlight_cursor_line=False)
179
yield Label("URL:")
180
yield Input(
181
placeholder="The URL of the link for the Raindrop",
0 commit comments