From b37fff262df96a233eff57706182bc19c42a1731 Mon Sep 17 00:00:00 2001 From: Moonlit Productions Date: Mon, 29 Dec 2025 01:32:02 -0500 Subject: [PATCH] entirely rework event handling take 6 --- handlers.lua | 2 ++ 1 file changed, 2 insertions(+) diff --git a/handlers.lua b/handlers.lua index a56a52a..25264e4 100644 --- a/handlers.lua +++ b/handlers.lua @@ -97,6 +97,8 @@ function handlers.handlePasswordInput() end -- Register the password handler with highest priority + -- First, clear all monitor_touch handlers to avoid duplicates + events.clearHandlers("monitor_touch") events.registerHandler("monitor_touch", passwordClickHandler, events.PRIORITY.PASSWORD_INPUT) -- Wait for password submission