Browse Source

scenecomposer : now the scale shortcut take care of Ctrl key

Dokthar 9 years ago
parent
commit
dfca62fc45

+ 2 - 1
jme3-scenecomposer/src/com/jme3/gde/scenecomposer/tools/shortcuts/ScaleShortcut.java

@@ -38,7 +38,8 @@ public class ScaleShortcut extends ShortcutTool {
     @Override
 
     public boolean isActivableBy(KeyInputEvent kie) {
-        return kie.getKeyCode() == KeyInput.KEY_S;
+        ShortcutManager scm = Lookup.getDefault().lookup(ShortcutManager.class);
+        return kie.getKeyCode() == KeyInput.KEY_S && !scm.isCtrlDown();
     }
 
     @Override