From e29dc4a6f87a537c11a33dcf74f97186c480735f Mon Sep 17 00:00:00 2001 From: Sword352 <99792114+Sword352@users.noreply.github.com> Date: Fri, 5 Jan 2024 14:56:30 +0100 Subject: [PATCH] Remove `ActionManager` traces --- haxe/ui/actions/ActionManager.hx | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/haxe/ui/actions/ActionManager.hx b/haxe/ui/actions/ActionManager.hx index 67afa9842..56e880b0e 100644 --- a/haxe/ui/actions/ActionManager.hx +++ b/haxe/ui/actions/ActionManager.hx @@ -68,16 +68,16 @@ class ActionManager { public function actionStart(action:ActionType, source:IActionInputSource) { var currentFocus = FocusManager.instance.focus; if (currentFocus == null) { - #if debug - trace("no focus for action: " + action); - #end + // #if debug + // trace("no focus for action: " + action); + // #end return; } if (!(currentFocus is InteractiveComponent)) { - #if debug - trace("current focus not interactive: " + action); - #end + // #if debug + // trace("current focus not interactive: " + action); + // #end return; } @@ -104,9 +104,9 @@ class ActionManager { } if (!(currentFocus is InteractiveComponent)) { - #if debug - trace("current focus not interactive: " + action); - #end + // #if debug + // trace("current focus not interactive: " + action); + // #end return; } @@ -122,4 +122,4 @@ class ActionManager { _repeatActions.remove(action); } } -} \ No newline at end of file +}