- fixed http://www.wowace.com/projects/ice-hud/tickets/8-module-target-info-long-targetnames-overwrites-the/ : target name in the TargetInfo module no longer spills to the next line or gets cut off if it's too long

This commit is contained in:
Parnic
2008-11-20 04:02:25 +00:00
parent 1ce4de9bce
commit f71fede18d

View File

@ -528,9 +528,11 @@ end
function TargetInfo.prototype:CreateTextFrame()
self.frame.targetName = self:FontFactory(self.moduleSettings.fontSize+1, nil, self.frame.targetName)
self.frame.targetName:SetJustifyH("CENTER")
self.frame.targetName:SetJustifyV("TOP")
self.frame.targetName:SetAllPoints(self.frame)
self.frame.targetName:SetPoint("TOP", self.frame, "TOP")
end