Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion EasyFind.toc
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions UI.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -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)
Expand Down
Loading