Results: 1Comments by: Vegas4Runner
File: Xone Minimap01-25-11
Replace Zoom code with this to get...
Posted By: Vegas4Runner
Replace Zoom code with this to get mousewheel working (can't remember who to credit as I was using code snippets from tons of other mods to learn LUA): -- Zoom Minimap:SetScript('OnMouseWheel', function(self, direction) local zoom, maxZoom = self:GetZoom() + direction, self:GetZoomLevels() self:SetZoom(zoom >= maxZoom and max...