Empty space between buttons in latest version #2194


Open
  • Cyoor created this issue Nov 15, 2023

    Today when I logged in after the last update I noticed that there is an empty space between the world map button and the main menu button.
    The whole "Micro Menu" has also become larger. This only happens with Bartender 4 installed and not without.

    I play wow classic era.

  • Jademalo posted a comment Nov 29, 2023

    It seems like there's a bug in MicroMenu.lua.

     

    		-- handle lfg/worldmap button on classic
    		if WoWClassic and C_LFGList and C_LFGList.IsLookingForGroupEnabled then
    			tDeleteItem(BT_MICRO_BUTTONS, C_LFGList.IsLookingForGroupEnabled() and "WorldMapMicroButton" or "LFGMicroButton")
    		end

     

    C_LFGList.IsLookingForGroupEnabled() throws an "Attempt to call field (a nil value)" error, so that block of code ends up doing nothing.

     

    A workaround for era is to change it to;

     

    		-- handle lfg/worldmap button on classic
    		if WoWClassic then
    			tDeleteItem(BT_MICRO_BUTTONS, "LFGMicroButton")
    		end

     


To post a comment, please login or register a new account.