Skip to content

Commit 413548b

Browse files
committed
Fix deprecation warnings
1 parent aa0e48c commit 413548b

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

modules/main/src/main/java/com/annimon/ownlang/modules/forms/ComponentValue.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ private void handleKeyEvent(String type, final KeyEvent e) {
111111
map.set("isControlDown", NumberValue.fromBoolean(e.isControlDown()));
112112
map.set("isMetaDown", NumberValue.fromBoolean(e.isMetaDown()));
113113
map.set("isShiftDown", NumberValue.fromBoolean(e.isShiftDown()));
114-
map.set("modifiers", NumberValue.of(e.getModifiers()));
114+
map.set("modifiers", NumberValue.of(e.getModifiersEx()));
115115
action.execute(new StringValue(type), map);
116116
}
117117
});

modules/main/src/main/java/com/annimon/ownlang/modules/robot/robot.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,9 @@ public Map<String, Value> constants() {
3838
entry("VK_FIRE", NumberValue.of(KeyEvent.VK_ENTER)),
3939
entry("VK_ESCAPE", NumberValue.of(KeyEvent.VK_ESCAPE)),
4040

41-
entry("BUTTON1", NumberValue.of(InputEvent.BUTTON1_MASK)),
42-
entry("BUTTON2", NumberValue.of(InputEvent.BUTTON2_MASK)),
43-
entry("BUTTON3", NumberValue.of(InputEvent.BUTTON3_MASK))
41+
entry("BUTTON1", NumberValue.of(InputEvent.BUTTON1_DOWN_MASK)),
42+
entry("BUTTON2", NumberValue.of(InputEvent.BUTTON2_DOWN_MASK)),
43+
entry("BUTTON3", NumberValue.of(InputEvent.BUTTON3_DOWN_MASK))
4444
);
4545
}
4646

0 commit comments

Comments
 (0)