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:
parent
7956f8b1ce
commit
8e09cf3335
2 changed files with 2 additions and 2 deletions
|
|
@ -765,7 +765,7 @@ export const defaultShortcuts = [
|
|||
},
|
||||
{
|
||||
name: "Minimize",
|
||||
shortcut: "mod+q",
|
||||
shortcut: "mod+.",
|
||||
},
|
||||
{
|
||||
name: "Code",
|
||||
|
|
|
|||
|
|
@ -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",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue