Originally Posted by Auralin
I'm having trouble figuring out what text to alter to hide the raid frames in rUnits, If anyone could help, I would apprciate it.
|
local temptoggle = CreateFrame"Frame"
temptoggle:SetScript("OnEvent", function(self, event, ...)
if GetNumRaidMembers() > 1 then
raid:Hide()
elseif GetNumPartyMembers() > 1 then
party:Show()
end
end)
The original code is found in the layout.lua file, near the very bottom.