From eaf7eb17bc73b337791f15dec6c6f8640107c313 Mon Sep 17 00:00:00 2001 From: Sword <99792114+Sword352@users.noreply.github.com> Date: Mon, 1 Apr 2024 11:07:42 +0200 Subject: [PATCH] Update DragManager.hx --- haxe/ui/dragdrop/DragManager.hx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/haxe/ui/dragdrop/DragManager.hx b/haxe/ui/dragdrop/DragManager.hx index bd4472b0c..ef78e58b7 100644 --- a/haxe/ui/dragdrop/DragManager.hx +++ b/haxe/ui/dragdrop/DragManager.hx @@ -28,7 +28,7 @@ class DragManager { * Whether a component is currently being dragged */ public var isDragging(get, never):Bool; - inline function get_isDragging():Bool { + function get_isDragging():Bool { return _currentComponent != null; }