From cde031f70dc9435a71291686ee591dfa761de936 Mon Sep 17 00:00:00 2001 From: Isaiah Odhner Date: Sun, 23 Apr 2023 15:30:00 -0400 Subject: [PATCH] Restore Ctrl+C to quit (for now) --- paint.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/paint.py b/paint.py index 04a4b7f..cce05fd 100755 --- a/paint.py +++ b/paint.py @@ -1088,7 +1088,7 @@ class PaintApp(App[None]): # it ignores the Shift. ("ctrl+shift+z,shift+ctrl+z,ctrl+y,f4", "redo", _("Repeat")), ("ctrl+x", "cut", _("Cut")), - ("ctrl+c", "copy", _("Copy")), + # ("ctrl+c", "copy", _("Copy")), # Quit, for now ("ctrl+v", "paste", _("Paste")), ("ctrl+g", "toggle_grid", _("Show Grid")), ("ctrl+f", "view_bitmap", _("View Bitmap")),