View Single Post
02-03-12, 08:03 AM   #12
yj589794
A Rage Talon Dragon Guard
AddOn Author - Click to view addons
Join Date: Mar 2009
Posts: 314
for setting the size of the focus frame, find this part
Code:
    self:SetSize(width, height)
    if(unit == "targettarget" or unit == "focustarget") then
        self:SetSize(80, height)
    end
and add a case for if the unit is 'focus'.

===================

I'm not sure what you mean by class role icon, so I assume you mean the LFD role icon. In which case, find the following text and delete it:
Code:
    local LFDRole = hp:CreateTexture(nil, 'OVERLAY')
    LFDRole:SetSize(16, 16)
    LFDRole:SetPoint('LEFT', masterlooter, 'RIGHT')
    self.LFDRole = LFDRole

Last edited by yj589794 : 02-03-12 at 08:10 AM.
  Reply With Quote