From 929c5a3a86cbd40033357afd15672d551f8602c2 Mon Sep 17 00:00:00 2001 From: Blitz54 Date: Tue, 3 Mar 2026 00:28:00 -0600 Subject: [PATCH] Fix Mastery tooltip bug when pressing escape while hovering an option --- src/Classes/TreeTab.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Classes/TreeTab.lua b/src/Classes/TreeTab.lua index a8b7cfeac2..6378739eed 100644 --- a/src/Classes/TreeTab.lua +++ b/src/Classes/TreeTab.lua @@ -1019,7 +1019,7 @@ function TreeTabClass:OpenMasteryPopup(node, viewPort) main:ClosePopup() end) controls.effect = new("PassiveMasteryControl", {"TOPLEFT",nil,"TOPLEFT"}, {6, 25, 0, passiveMasteryControlHeight}, effects, self, node, controls.save) - main:OpenPopup(controls.effect.width + 12, controls.effect.height + 60, node.name, controls) + main:OpenPopup(controls.effect.width + 12, controls.effect.height + 60, node.name, controls, nil, nil, "close") end end