Skip to content

Commit

Permalink
fix key
Browse files Browse the repository at this point in the history
  • Loading branch information
oniatsu committed Aug 10, 2022
1 parent 71b0d7a commit 1fa7890
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/controller/HotkeyController.lua
Original file line number Diff line number Diff line change
Expand Up @@ -310,13 +310,13 @@ HotkeyController.new = function(mainController)
local keybindModifier
if isShiftable then
if hasModifier then
keybindModifier = { "option", "shift" }
keybindModifier = { "option", "command", "control", "shift" }
else
keybindModifier = { "shift" }
end
else
if hasModifier then
keybindModifier = { "option" }
keybindModifier = { "option", "command", "control" }
else
keybindModifier = {}
end
Expand Down

0 comments on commit 1fa7890

Please sign in to comment.