Mercurial > wow > reaction
changeset 150:f300c3ffc3fa
Fixed a little bug with the Action Bars interface panel redirect
author | Flick <flickerstreak@gmail.com> |
---|---|
date | Fri, 08 May 2009 00:25:43 +0000 |
parents | 61d89f0918ca |
children | 57568d3ff3e6 |
files | modules/HideBlizzard.lua |
diffstat | 1 files changed, 5 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/modules/HideBlizzard.lua Fri May 08 00:22:56 2009 +0000 +++ b/modules/HideBlizzard.lua Fri May 08 00:25:43 2009 +0000 @@ -111,7 +111,11 @@ end function module:IsHidden(info) - return self.db.profile.hide and self.db.profile[info[#info]] + if info then + return self.db.profile.hide and self.db.profile[info[#info]] + else + return self.db.profile.hide + end end function module:SetHidden(info,value)