Request: Move frame for the vehicle
CadoCat opened this issue ยท 7 comments
Just noticed in wrath that I can't move the Vehicle frame (the seating position). I'd fix it myself but I can't find where you did the durability frame.
Only workaround I've managed to come up with is to set the size of the minimap cluster to be the same as the minimap plus the upper and lower bars.
Still not able to re-set the the anchor point. very very frustrating.
So I've found the VehicleSeatIndicator is anchored to the minimap cluster. Not sure but I couldn't unanchor it. I'll keep working on a solution.
local cap = VehicleSeatIndicator.ClearAllPoints
local sp = VehicleSeatIndicator.SetPoint
hooksecurefunc(VehicleSeatIndicator, "SetPoint", function(self)
cap(self)
sp(self, "TOPRIGHT", Minimap, "BOTTOMLEFT", 100, -60)
end)
This seems to have resolved the issue. It's messy, but works. Still not sure how to add the mover to it.