mirror of
https://github.com/JulianGro/overte.git
synced 2025-05-04 10:18:53 +02:00
Enable Alt action for cloning on Mac
This commit is contained in:
parent
5fb18566fe
commit
45eda40466
1 changed files with 3 additions and 2 deletions
|
@ -1118,8 +1118,9 @@ SelectionDisplay = (function() {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
// No action if the Alt key is pressed.
|
// No action if the Alt key is pressed unless on Mac.
|
||||||
if (event.isAlt) {
|
var isMac = Controller.getValue(Controller.Hardware.Application.PlatformMac);
|
||||||
|
if (event.isAlt && !isMac) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue