diff --git a/enjoy/src/renderer/app.tsx b/enjoy/src/renderer/app.tsx index cc91d41a..527ade90 100644 --- a/enjoy/src/renderer/app.tsx +++ b/enjoy/src/renderer/app.tsx @@ -21,11 +21,11 @@ function App() { }); }); - useHotkeys("Control+Comma", () => { + useHotkeys(["Control+Comma", "Command+Comma"], () => { document.getElementById("preferences-button")?.click(); }); - useHotkeys("Control+Q", () => { + useHotkeys(["Control+Q", "Command+Q"], () => { window.__ENJOY_APP__.app.quit(); });