From 3dee235c33cecf4307c00f78a128847d383e0123 Mon Sep 17 00:00:00 2001 From: Ian Harrigan Date: Sun, 28 Jul 2024 09:49:10 +0200 Subject: [PATCH] actionRepeatInterval had no type (null type in macros) --- 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 96d4e2f14..9b9fde2d6 100644 --- a/haxe/ui/core/InteractiveComponent.hx +++ b/haxe/ui/core/InteractiveComponent.hx @@ -13,7 +13,7 @@ import haxe.ui.validators.Validators; **/ @:access(haxe.ui.events.Events) class InteractiveComponent extends Component implements IFocusable implements IValueComponent { - public var actionRepeatInterval = 100; + public var actionRepeatInterval:Int = 100; //*********************************************************************************************************** // Public API