From 45eda4046642beb22d461b2474cef533814ac3cc Mon Sep 17 00:00:00 2001 From: David Rowe Date: Wed, 13 Nov 2019 10:48:08 +1300 Subject: [PATCH] Enable Alt action for cloning on Mac --- .../system/create/entitySelectionTool/entitySelectionTool.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/scripts/system/create/entitySelectionTool/entitySelectionTool.js b/scripts/system/create/entitySelectionTool/entitySelectionTool.js index 98f1deb4ad..9bab739060 100644 --- a/scripts/system/create/entitySelectionTool/entitySelectionTool.js +++ b/scripts/system/create/entitySelectionTool/entitySelectionTool.js @@ -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; }