Skip to content

Commit 37579cf

Browse files
committed
Don't override Ctrl+C as a non-priority key in the demo
See #3106.
1 parent bd94b48 commit 37579cf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/textual/demo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@ class DemoApp(App[None]):
277277
("ctrl+t", "app.toggle_dark", "Toggle Dark mode"),
278278
("ctrl+s", "app.screenshot()", "Screenshot"),
279279
("f1", "app.toggle_class('RichLog', '-hidden')", "Notes"),
280-
Binding("ctrl+c,ctrl+q", "app.quit", "Quit", show=True),
280+
Binding("ctrl+q", "app.quit", "Quit", show=True),
281281
]
282282

283283
show_sidebar = reactive(False)

0 commit comments

Comments
 (0)