* Fixed an issue where attributes were being deleted on blacklisted frames
James Whitehead II [12-27-06 - 18:43]
* Fixed an issue where attributes were being deleted on blacklisted frames
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