057
BazWidgetDrawers
057 (2026-05-04)
Full Changelog Previous Releases
- v057: tracker quest click opens map and quest log together
The Quest Tracker widget's left-click on a quest title used to call
WorldMapFrame:Show + QuestMapFrame_ShowQuestDetails directly, trying
to bypass ShowUIPanel out of an old concern about BazMap's panel
detachment. The bypass was incomplete: it never opened the QuestMap
side panel itself, so clicking from a closed-map state showed only
the bare map - quest title, detail body, and rewards were all
missing. ShowQuestDetails alone sets DetailsFrame.questID and shows
the details inner frame, but the surrounding QuestMapFrame stays
hidden and the user thinks nothing happened.
Now routes through QuestMapFrame_OpenToQuestDetails - the same entry
point Blizzard's own objective tracker calls on a quest title click.
ShowUIPanel on a UIPanelLayout-disabled WorldMapFrame is safe in
modern BazMap (the panel-system path is short-circuited because the
attribute is false), so the original avoidance no longer applies.
The supertrack call before the open and the existing toggle-to-close
path (clicking the currently-displayed quest closes the map) are
preserved.