Baggins

Baggins

1M Downloads

Radio buttons in minimap popup-menu are broken

Elberet opened this issue ยท 2 comments

commented

The radio buttons for "Hide Default Bank" and "Override Default Bags" in the minimap popup-menu do not reflect the actual state of the toggled options. For example, the menu might show bank = on and bags = off, but Baggins and the default UI will behave as tho the option where enabled.

Game version: Wow Cataclysm Classic, english locale.
Baggins version(s): 5.3.3 - 5.3.5, possibly since 2b9a1ff

commented

Looks like the indices referenced in updateMenu() are wrong. The change added a new menu entry, shifting the two menu items down by one (or up one in array index):

Baggins/Baggins.lua

Lines 274 to 275 in 2b9a1ff

ldbDropDownMenu[3].checked = Baggins.db.profile.hidedefaultbank
ldbDropDownMenu[4].checked = Baggins.db.profile.overridedefaultbags

commented

This commit( 558694b ) included in v5.3.6, should address this issue, let me know if you still have issues. Thanks!