Interesting issue with my world map

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 ;

https//gyazo. com/e9698dabdc74819aa2713ae39ac5cc5a

Is there any way to fix this? I have already done a full ui reset once or twice with no result.

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

/console cvar_reset

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 <.<

That’s very strange. The map works fine for me at least…

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.

Thanks for trying to help me though :slight_smile:

Weird, now I can (randomly) reproduce it
https://streamable.com/40pb0

Lol yep that’s exactly what I have too

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

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.