View Single Post
06-22-09, 02:41 PM   #1067
Irgnoam
A Deviate Faerie Dragon
Join Date: May 2009
Posts: 10
Originally Posted by fnacke View Post
Hey guys im currently using oUF Caellian and my question is, is there any way i can remove the raidframes?
Im using Grid and i prefer to keep them

thanks for help!
Try removing
Code:
local raid = {}
for i = 1, NUM_RAID_GROUPS do
	local raidgroup = oUF:Spawn("header", "oUF_Raid"..i)
	raidgroup:SetAttribute("groupFilter", tostring(i))
	raidgroup:SetAttribute("showRaid", true)
	raidgroup:SetAttribute("yOffSet", -7.5)
	table.insert(raid, raidgroup)
	if i == 1 then
		raidgroup:SetPoint("TOPLEFT", UIParent, "TOPLEFT", cfg.raidX, cfg.raidY)
	else
		raidgroup:SetPoint("TOPLEFT", raid[i-1], "TOPRIGHT", (60 * settings.scale - 60) + 7.5, 0)
	end
end
from somewhere pretty far down in "oUF_cMain.lua".
If it doesn't work, I don't know though.

EDIT: I don't use oUF Caellian myself though, so I just took 5 minutes to look at the code for it now.

Last edited by Irgnoam : 06-22-09 at 02:43 PM.