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.
This commit is contained in:
Isaiah Odhner 2023-04-23 15:20:11 -04:00
parent 0e1e43a67b
commit 286852616b

View File

@ -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")),