We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f48823d + eb06c58 commit 422ddfdCopy full SHA for 422ddfd
haxe/ui/events/KeyboardEvent.hx
@@ -22,6 +22,7 @@ class KeyboardEvent extends UIEvent {
22
c.altKey = this.altKey;
23
c.ctrlKey = this.ctrlKey;
24
c.shiftKey = this.shiftKey;
25
+ postClone(c);
26
return c;
27
}
-}
28
+}
haxe/ui/focus/FocusManager.hx
@@ -13,6 +13,9 @@ import Std.isOfType;
13
import Std.is as isOfType;
14
#end
15
16
+#if haxeui_expose_all
17
+@:expose
18
+#end
19
class FocusManager extends FocusManagerImpl {
20
private static var _instance:FocusManager;
21
public static var instance(get, null):FocusManager;
0 commit comments