Skip to content

Commit

Permalink
Fix: 拡大 / 縮小にデフォルトではショートカットキーを割り当てない
Browse files Browse the repository at this point in the history
現状 Mac 環境では Ctrl + + が動いてなさそうな上に、"+" "-" をを含めた記号キーでのキーコンビネーションが現状の実装ではなぜか設定できないため
  • Loading branch information
tsukumijima committed Dec 3, 2024
1 parent 6b118ee commit 90bffde
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/type/preload.ts
Original file line number Diff line number Diff line change
Expand Up @@ -118,11 +118,11 @@ export const defaultHotkeySettings: HotkeySettingType[] = [
},
{
action: "拡大",
combination: HotkeyCombination(!isMac ? "Ctrl +" : "Meta +"),
combination: HotkeyCombination(""),
},
{
action: "縮小",
combination: HotkeyCombination(!isMac ? "Ctrl -" : "Meta -"),
combination: HotkeyCombination(""),
},
{
action: "拡大率のリセット",
Expand Down

0 comments on commit 90bffde

Please sign in to comment.