Leave vehicle button anchoring
Hessutar opened this issue Β· 10 comments
I pushed a small fix for the next version.
All classes with stance bars should work fine at the moment, but others like Mage need the fix. (I dont have a char without stance bar to test atmπ
).
Hey,
thanks for the report!
Shamans are wierd π I guess it gets overriden somewhere in the blizzard totembar code. Will try to fix this for the next version.
Are you using any Addon for your Totembar?
On my shaman its working like it should:
It gets set from Blizzard in
function MainMenuBarVehicleLeaveButton_Update()
if ( ( CanExitVehicle() or UnitOnTaxi("player")) and ActionBarController_GetCurrentActionBarState() == LE_ACTIONBAR_STATE_MAIN ) then
MainMenuBarVehicleLeaveButton:ClearAllPoints();
if ( IsPossessBarVisible() ) then
MainMenuBarVehicleLeaveButton:SetPoint("LEFT", PossessButton2, "RIGHT", 30, 0);
elseif ( GetNumShapeshiftForms() > 0 ) then
MainMenuBarVehicleLeaveButton:SetPoint("LEFT", StanceBarFrame.StanceButtons[GetNumShapeshiftForms()], "RIGHT", 30, 0);
elseif ( MultiCastActionBarFrame and HasMultiCastActionBar() ) then
MainMenuBarVehicleLeaveButton:SetPoint("LEFT", MultiCastActionBarFrame, "RIGHT", 30, 0);
else
MainMenuBarVehicleLeaveButton:SetPoint("LEFT", PossessBarFrame, "LEFT", 10, 0);
end
MainMenuBarVehicleLeaveButton:Show();
MainMenuBarVehicleLeaveButton:Enable();
ShowPetActionBar(true);
else
MainMenuBarVehicleLeaveButton:SetHighlightTexture([[Interface\Buttons\ButtonHilight-Square]], "ADD");
MainMenuBarVehicleLeaveButton:UnlockHighlight();
MainMenuBarVehicleLeaveButton:Hide();
ShowPetActionBar(true);
end
UIParent_ManageFramePositions();
end
and shaman is this case:
elseif ( MultiCastActionBarFrame and HasMultiCastActionBar() ) then
MainMenuBarVehicleLeaveButton:SetPoint("LEFT", MultiCastActionBarFrame, "RIGHT", 30, 0);
You are correct, I am using TotemTimers addon for my totems. I tried to disable it but couldn't get my totem bar to show as you have it. I wonder if there is a totem bar in classic era/sod/hc as it seems to be in classic wrath (I asume)?
I think i know what the issue was. Made a change for the next major version. But i don't have a shaman on Era, so you might have to test for me π
I think i know what the issue was. Made a change for the next major version. But i don't have a shaman on Era, so you might have to test for me π
Sure no problem!