WoWInterface SVN zz_Coords

Compare Revisions

  • This comparison shows the changes necessary to convert path
    /
    from Rev 74 to Rev 75
    Reverse comparison

Rev 74 → Rev 75

trunk/zz_Coords/core.lua
8,6 → 8,8
["ShowZone"] = false,
["ShowSubZone"] = true,
["ShowTooltip"] = false,
["windowX"] = 10,
["windowY"] = 5
}
local options = {
}
trunk/zz_Coords/provider.lua
68,6 → 68,15
})
mapframe:SetBackdropColor(0,0,0,1);
mapframe.elapsed = 0
mapframe:SetScript("OnEnter", function(self)
self:SetBackdropColor(0,0,0,0);
coordText:Hide()
end)
mapframe:SetScript("OnLeave", function(self)
coordText:Show()
self:SetBackdropColor(0,0,0,1);
end)
mapframe:EnableMouse(1)
coordText = mapframe:CreateFontString(nil, "OVERLAY","GameFontNormal")
coordText:SetAllPoints(mapframe)
coordText:SetJustifyH("LEFT")