View Single Post
07-19-10, 03:08 PM   #1
OmeCorn
A Deviate Faerie Dragon
AddOn Author - Click to view addons
Join Date: May 2010
Posts: 15
oUF Raidframe always visible

Hiya all,

I've been trying to modify a raidframe based on the oUF Framework, but I can't get the frame to show when I'm Solo or in a Party. Can somebody help me with that. I believe the hidden secret lies within this piece of code:

Code:
    local raid = {}
    for i = 1, oUF_Neav.units.raid.numGroups do
        table.insert(raid, self:SpawnHeader('oUF_Neav_Raid'..i, nil, visible,
            'showParty', true,
            'showPlayer', true,
            'showSolo', (oUF_Neav.units.raid.showSolo and true) or false,
            'showRaid', true,
            'columnSpacing', 7,
            'unitsPerColumn', 1,
            'maxColumns', 5,
            'columnAnchorPoint', 'TOP',
            'groupFilter', i
            )
        )
Thanks in advance.
  Reply With Quote