View Single Post
01-11-07, 12:33 PM   #230
Kitami
A Murloc Raider
 
Kitami's Avatar
Join Date: Jan 2007
Posts: 8
Originally Posted by Cladhaire
Ack I broke scaling.. sorry about that.. I'll do what I can to get that fixed tonight.
To fix scaling:

Open the PerfectRaid_Hacks.lua and search
Code:
	for i=1,8 do
		local name = "PRHeader"..i
		local button = getglobal(name)
		if button then
			button:SetScale(scale)
		end
	end
	PerfectRaid:RestorePosition("PRHeader1")
and replace it with
Code:
--[[	for i=1,8 do
		local name = "PRHeader"..i
		local button = getglobal(name)
		if button then
			button:SetScale(scale)
		end
	end
	PerfectRaid:RestorePosition("PRHeader1")
--]]
	
	local name = "PRHeaderColumn"
	local button = getglobal(name)
	if button then
		button:SetScale(scale)
	end
	PerfectRaid:RestorePosition("PRHeaderColumn")
(Not really tested, but works for me)

btw: I hope the group number before the name if sorted by class will be back in the final relase ... it always helped me a lot and it doesn't really take much space.

Last edited by Kitami : 01-11-07 at 12:55 PM.
  Reply With Quote