Skip to content

Commit 422ddfd

Browse files
committed
Merge branch 'master' of https://github.com/haxeui/haxeui-core
2 parents f48823d + eb06c58 commit 422ddfd

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

haxe/ui/events/KeyboardEvent.hx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ class KeyboardEvent extends UIEvent {
2222
c.altKey = this.altKey;
2323
c.ctrlKey = this.ctrlKey;
2424
c.shiftKey = this.shiftKey;
25+
postClone(c);
2526
return c;
2627
}
27-
}
28+
}

haxe/ui/focus/FocusManager.hx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@ import Std.isOfType;
1313
import Std.is as isOfType;
1414
#end
1515

16+
#if haxeui_expose_all
17+
@:expose
18+
#end
1619
class FocusManager extends FocusManagerImpl {
1720
private static var _instance:FocusManager;
1821
public static var instance(get, null):FocusManager;

0 commit comments

Comments
 (0)