From 8d367492a1b53e47d917352e31c3e5d07a39461c Mon Sep 17 00:00:00 2001 From: James Whitehead II Date: Wed, 27 Dec 2006 18:43:34 +0000 Subject: [PATCH] * Fixed an issue where attributes were being deleted on blacklisted frames --- Clique.lua | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Clique.lua b/Clique.lua index b3d5529..60d7948 100644 --- a/Clique.lua +++ b/Clique.lua @@ -411,6 +411,11 @@ function Clique:SetAttribute(entry, frame) end function Clique:DeleteAttribute(entry, frame) + local name = frame:GetName() + if self.profile.blacklist[name] then + return + end + local type,button,value if not tonumber(entry.button) then -- 1.7.9.5