You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On MacOS, ctrl-click is the same as right-click. As such I cannot find a way to increase things like storage or trade routes by 10.
In case you don't have a MacOS device to test on, this is what the various keybinds do for me (I am referring to the keys in the MacOS way, so option key == alt key and command (cmd) key == windows key):
Action
Effect
normal click
change by 1
shift click
change by 25
option click
change by 100
option+shift click
change by 2500
cmd click
change by 1
cmd+shift click
change by 25
ctrl+shift click
right-click menu
ctrl click
right-click menu
Proposed solution
I think it should suffice to check for MacOS and if detected, change all hotkeys that use Ctrl, to use Cmd instead.
According to this, Cmd is event.metaKey in JS
The text was updated successfully, but these errors were encountered:
Issue
On MacOS, ctrl-click is the same as right-click. As such I cannot find a way to increase things like storage or trade routes by 10.
In case you don't have a MacOS device to test on, this is what the various keybinds do for me (I am referring to the keys in the MacOS way, so
option key == alt key
andcommand (cmd) key == windows key
):Proposed solution
I think it should suffice to check for MacOS and if detected, change all hotkeys that use Ctrl, to use Cmd instead.
According to this, Cmd is
event.metaKey
in JSThe text was updated successfully, but these errors were encountered: