For a while now I’ve been having a grey bar at the bottom of my map that I just can’t get rid of unless I reload, and I get it each time I go through a load screen or char which makes it quite annoying. Surprisngly it’s fixed with the smaller elvui map, but as soon as I go without any addons I get ;
If you tried these instructions (including disabling all your addons) then you could try completely resetting all your console variables since those are stored server side
I just did all of that and unfortunately the grey bar is still there, almost feels like it’s trying to carry out a setting which isn’t there. I’ve just deleted all addon settings and addons, uninstalled twitch and it’s still there <.<
Yeah I’ve come to the conclusion that I’ll just have to use elvui and disable all the skins it uses, for some reason the map is fine there which is why it’s such a mystery to me.
For reference, this is the fix applied by ElvUI https://git.tukui.org/elvui/elvui/blob/e9b1d521560a6931544667866773df1c52b863ab/ElvUI/Modules/Maps/Worldmap.lua#L170
self:SecureHookScript(WorldMapFrame, 'OnShow', function()
if WorldMapFrame:IsMaximized() then
WorldMapFrame:UpdateMaximizedSize()
self:SetLargeWorldMap()
else
self:SetSmallWorldMap()
end
M:Unhook(WorldMapFrame, 'OnShow', nil)
end)
function M:UpdateMaximizedSize()
local WorldMapFrame = _G.WorldMapFrame
local width, height = WorldMapFrame:GetSize()
local magicNumber = (1 - smallerMapScale) * 100
WorldMapFrame:Size((width * smallerMapScale) - (magicNumber + 2), (height * smallerMapScale) - 2)
end