Skip to content

Commit

Permalink
Disable settings shortcut
Browse files Browse the repository at this point in the history
  • Loading branch information
Levminer committed Jan 21, 2024
1 parent c111750 commit ecfa77e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion interface/stores/settings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ const defaultSettings: LibSettings = {

shortcuts: {
show: "CmdOrCtrl+Shift+a",
settings: "CmdOrCtrl+Shift+s",
settings: "None",
exit: "CmdOrCtrl+Shift+d",
},
}
Expand Down
2 changes: 1 addition & 1 deletion interface/utils/shortcuts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export const shortcuts = [
{ id: "settings", name: language.menu.settings },
{ id: "exit", name: language.menu.exit },
]
const defaultShortcuts = ["CmdOrCtrl+Shift+a", "CmdOrCtrl+Shift+s", "CmdOrCtrl+Shift+d"]
const defaultShortcuts = ["CmdOrCtrl+Shift+a", "None", "CmdOrCtrl+Shift+d"]

/**
* Delete specified shortcut
Expand Down
2 changes: 1 addition & 1 deletion interface/windows/import/import.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
<div class="transparent-800 mb-5 flex w-full flex-row items-center justify-between rounded-xl p-5 text-left">
<div>
<h2>{language.import.importFromImage}</h2>
<h3>{language.import.importFromImageText}.</h3>
<h3>{language.import.importFromImageText}</h3>
</div>
<div class="ml-10 flex gap-3">
<button class="button" on:click={chooseImages}>
Expand Down

0 comments on commit ecfa77e

Please sign in to comment.