From e58ae07d62dcd44f763ef2ef117ab58d5848f309 Mon Sep 17 00:00:00 2001 From: wowaddonmaker Date: Tue, 17 Mar 2026 06:51:18 -0400 Subject: [PATCH] Fix mount macro and add 120005 interface version --- EasyFind.toc | 2 +- UI.lua | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/EasyFind.toc b/EasyFind.toc index ef485c6..8b46360 100644 --- a/EasyFind.toc +++ b/EasyFind.toc @@ -1,4 +1,4 @@ -## Interface: 120001, 120000 +## Interface: 120005, 120001, 120000 ## Title: EasyFind ## Notes: Search and locate UI elements and map locations with ease ## Author: justawower diff --git a/UI.lua b/UI.lua index 7805db5..caea5df 100644 --- a/UI.lua +++ b/UI.lua @@ -2347,7 +2347,7 @@ function UI:ShowHierarchicalResults(hierarchical, preserveScroll) resultRow:SetAttribute("macrotext", nil) elseif data and data.mountID then resultRow:SetAttribute("type", "macro") - resultRow:SetAttribute("macrotext", "/cancelform [form]\n/run C_MountJournal.SummonByID(" .. data.mountID .. ")") + resultRow:SetAttribute("macrotext", "/cancelform [form]") resultRow:SetAttribute("toy", nil) else resultRow:SetAttribute("type", nil) @@ -3377,7 +3377,7 @@ function UI:SelectResult(data) if not data then return end - -- Mount: secure button handles cancelform on click; Enter falls back to direct API + -- Mount: summon/dismiss (secure macro handles cancelform on click) if data.mountID then if C_MountJournal and C_MountJournal.SummonByID then C_MountJournal.SummonByID(data.mountID)