promotional bannermobile promotional banner

BazWidgetDrawers

Slide-out side drawer for a stack of dockable widgets: Quest Tracker, Minimap, Info Bar, Repair, and more. Fades out when unused, pops back on hover. Other addons can register their own widgets via the BazCore DockableWidget API.

File Details

057

  • R
  • May 4, 2026
  • 114.24 KB
  • 18
  • 12.0.5
  • Retail

File Name

BazWidgetDrawers-057.zip

Supported Versions

  • 12.0.5

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.