Hi, with the updated Aurora my borders got all messed up, the creator posted a solution to fix the most of them over at wowinterface but how do i get the borders around "buttons" to look like the others?
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.