From dd7a92a4949de80d61028470fe9600b11fddbc5a Mon Sep 17 00:00:00 2001 From: gamahachaa Date: Fri, 16 Feb 2024 10:51:02 +0100 Subject: [PATCH] Update InteractiveComponent.hx Fixing validators in ItemRenderers --- haxe/ui/core/InteractiveComponent.hx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/haxe/ui/core/InteractiveComponent.hx b/haxe/ui/core/InteractiveComponent.hx index 9993ecc81..d1b9cbdf1 100644 --- a/haxe/ui/core/InteractiveComponent.hx +++ b/haxe/ui/core/InteractiveComponent.hx @@ -113,7 +113,7 @@ class InteractiveComponent extends Component implements IFocusable implements IV } private var _validators:Array = null; - public var validators(get, set):Array; + @:clonable public var validators(get, set):Array; private function get_validators():Array { return _validators; }