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.
1 parent 7d9b1af commit bd7ebd9Copy full SHA for bd7ebd9
haxe/ui/backend/ComponentImpl.hx
@@ -910,21 +910,19 @@ class ComponentImpl extends ComponentBase {
910
_destroy = true;
911
}
912
913
- /*
914
private override function set_x(value:Float):Float {
915
var r = super.set_x(value);
916
if (this.parentComponent == null && _surface != null) {
917
- //this.left = value;
+ this.left = value;
918
919
return r;
920
921
922
private override function set_y(value:Float):Float {
923
var r = super.set_y(value);
924
925
- //this.top = value;
+ this.top = value;
926
927
928
929
- */
930
0 commit comments