main: fix preferences shortcut

This commit is contained in:
0xMRTT 2023-05-07 16:02:40 +02:00
parent 722ee665ec
commit 25cefc9671
Signed by: 0xMRTT
GPG Key ID: 19C1449A774028BD

View File

@ -52,7 +52,7 @@ class BavarderApplication(Adw.Application):
)
self.create_action("quit", self.on_quit, ["<primary>q"])
self.create_action("about", self.on_about_action, ["<primary>a"])
self.create_action("preferences", self.on_preferences_action, ["<primary>p"])
self.create_action("preferences", self.on_preferences_action, ["<primary>,"])
self.create_action("copy_prompt", self.on_copy_prompt_action)
self.create_action("copy_bot", self.on_copy_bot_action, ["<primary>c"])
self.create_action("ask", self.on_ask_action, ["<primary>Return"])