From 286852616b5f7261463386eb71f1345f63a75455 Mon Sep 17 00:00:00 2001 From: Isaiah Odhner Date: Sun, 23 Apr 2023 15:20:11 -0400 Subject: [PATCH] Remove meta+q binding for Quit I was going to include meta as an alternative for all shortcuts, for macOS, but I don't know if this works, and it's a little silly having just one shortcut with meta like this. --- paint.py | 1 - 1 file changed, 1 deletion(-) diff --git a/paint.py b/paint.py index 7f5a537..942cd56 100755 --- a/paint.py +++ b/paint.py @@ -1075,7 +1075,6 @@ class PaintApp(App[None]): # It's also bound to Ctrl+C by default, so for now I'll rebind it, # but eventually Ctrl+C will become Edit > Copy. ("ctrl+q", "exit", _("Quit")), - ("meta+q", "exit", _("Quit")), ("ctrl+c", "exit", _("Quit")), ("ctrl+s", "save", _("Save")), ("ctrl+shift+s", "save_as", _("Save As")),