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 21ea23c commit a5c568bCopy full SHA for a5c568b
tests/input/test_input_terminal_cursor.py
@@ -8,7 +8,9 @@ class InputApp(App):
8
CSS = "Input { padding: 4 8 }"
9
10
def compose(self) -> ComposeResult:
11
- yield Input("こんにちは!")
+ # We don't want to select the text on focus, as selected text
12
+ # has different interactions with the cursor_left action.
13
+ yield Input("こんにちは!", select_on_focus=False)
14
15
16
async def test_initial_terminal_cursor_position():
0 commit comments