Refactor: Update shortcut for minimizing component (#4916)

Refactor: Update shortcut for minimizing window

Changed the shortcut for minimizing the window from "mod+shift+q" to "mod+." in order to align with the default shortcuts. This improves the consistency and usability of the application.
This commit is contained in:
anovazzi1 2024-12-03 12:27:22 -03:00 committed by GitHub
commit 8e09cf3335
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View file

@ -765,7 +765,7 @@ export const defaultShortcuts = [
},
{
name: "Minimize",
shortcut: "mod+q",
shortcut: "mod+.",
},
{
name: "Code",

View file

@ -15,7 +15,7 @@ export const useShortcutsStore = create<shortcutsStoreType>((set, get) => ({
redo: "mod+y",
openPlayground: "mod+k",
advancedSettings: "mod+shift+a",
minimize: "mod+shift+q",
minimize: "mod+.",
code: "space",
copy: "mod+c",
duplicate: "mod+d",