View Single Post
09-21-13, 07:14 AM   #1
Rusken
A Theradrim Guardian
AddOn Compiler - Click to view compilations
Join Date: Dec 2009
Posts: 61
Help with Aurora borders

Hi, with the updated Aurora my borders got all messed up, the creator posted a solution to fix the most of them but how do i get the borders around "buttons" to look like the others, 1px that is?
Here's a screenshot to show what i mean ->



This is what i changed in the lua to make the other borders to be the way i want.

Before change

Code:
F.CreateSD = function(parent, size, r, g, b, alpha, offset)
	local sd = CreateFrame("Frame", nil, parent)
	sd.size = size or 5
	sd.offset = offset or 0
After change

Code:
F.CreateSD = function(parent, size, r, g, b, alpha, offset)
	local sd = CreateFrame("Frame", nil, parent)
	sd.size = size or 0.1
	sd.offset = offset or 0
I have looked for any simular code to change but without success.
  Reply With Quote