Thread: !Beautycase
View Single Post
02-20-13, 05:31 PM   #4
Viryz
A Cyclonian
AddOn Compiler - Click to view compilations
Join Date: Apr 2009
Posts: 42
Thanks so much for responding. So this is what I wrote:

Lua Code:
  1. if (self.HasBeautyBorder) then
  2.         return
  3.     end
  4.    
  5. local ignored = { OmenBarList = 1, RecountMainWindow = 1 }
  6. local name = self.GetName and self:GetName()
  7.     if name and ignored[name] then self.HasBeautyBorder = true
  8.         return
  9.     end
  10.    
  11.     local uL2, uR1, uR2, bL1, bL2, bR1, bR2 = ...
  12.     if (uL1) then
  13.         if (not uL2 and not uR1 and not uR2 and not bL1 and not bL2 and not bR1 and not bR2) then
  14.             uL2, uR1, uR2, bL1, bL2, bR1, bR2 = uL1, uL1, uL1, uL1, uL1, uL1, uL1
  15.         end
  16.     end

Sadly, without results. The results came back as all of the borders were gone on pretty much everything.
Did I write something incorrect?

I would really like to get this working, Thanks again!
  Reply With Quote