From 8ce3f2c5eb671ad15569f82ac3322333b5c990df Mon Sep 17 00:00:00 2001 From: Ian Harrigan Date: Tue, 15 Oct 2024 12:49:52 +0200 Subject: [PATCH] Null should be Float (incompatible override on static targets) --- haxe/ui/containers/Panel.hx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/haxe/ui/containers/Panel.hx b/haxe/ui/containers/Panel.hx index fab88ea6d..9a7017d82 100644 --- a/haxe/ui/containers/Panel.hx +++ b/haxe/ui/containers/Panel.hx @@ -43,7 +43,7 @@ class Panel extends VBox { return super.set_percentHeight(value); } - public override function set_height(value:Null):Null { + public override function set_height(value:Float):Float { contentContainer.percentHeight = 100; return super.set_height(value); }