From 4a786194169aabef5190c9136d045bf4dec12036 Mon Sep 17 00:00:00 2001 From: Xurkon Date: Fri, 20 Mar 2026 22:04:51 -0500 Subject: [PATCH] test: Add click debug test --- Modules/Tracker/TrackerLinePool.lua | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Modules/Tracker/TrackerLinePool.lua b/Modules/Tracker/TrackerLinePool.lua index c4090d0..f535432 100644 --- a/Modules/Tracker/TrackerLinePool.lua +++ b/Modules/Tracker/TrackerLinePool.lua @@ -155,6 +155,11 @@ function TrackerLinePool.Initialize(questFrame) line:EnableMouse(true) line:RegisterForDrag("LeftButton") line:RegisterForClicks("RightButtonUp", "LeftButtonUp") + + -- TEST: Always capture clicks to debug + line:SetScript("OnClick", function(self, button) + Questie:Debug(Questie.DEBUG_DEVELOP, "[TrackerLinePool:TEST_OnClick] button:", button, "Shift:", IsShiftKeyDown()) + end) function line:SetOnClick(onClickmode) if onClickmode == "quest" then