Enable Alt action for cloning on Mac

This commit is contained in:
David Rowe 2019-11-13 10:48:08 +13:00
parent 5fb18566fe
commit 45eda40466

View file

@ -1118,8 +1118,9 @@ SelectionDisplay = (function() {
return false;
}
// No action if the Alt key is pressed.
if (event.isAlt) {
// No action if the Alt key is pressed unless on Mac.
var isMac = Controller.getValue(Controller.Hardware.Application.PlatformMac);
if (event.isAlt && !isMac) {
return;
}