- Fixed problem where Player Details Windows didn't open if the player on set the nickname without a avatar.

- Fixed a bug with HotCorner where the buttons doesn't hide after disabling it on options panel.
- Attempt to fix a issue with framestrata fixer addons where they mess around with frame levels.
This commit is contained in:
tercio
2014-05-16 15:14:19 -03:00
parent 41558af9e9
commit 6b672d0649
9 changed files with 62 additions and 16 deletions
+5 -1
View File
@@ -209,6 +209,8 @@ local tinsert = tinsert
LibHotCorners:CreateAddonWidget (self, button_table, index, self.position)
end
button_table.widget:ClearAllPoints()
if (not button_table.savedtable.hide) then
if (self.position == "topleft" or self.position == "topright") then
local y = i * 35 * -1
@@ -248,7 +250,9 @@ local tinsert = tinsert
function HotCornersButtonOnEnter (self)
set_size (self:GetParent())
for index, button_table in ipairs (LibHotCorners [self:GetParent().position]) do
button_table.widget:Show()
if (not button_table.savedtable.hide) then
button_table.widget:Show()
end
end
show_tooltip (self)
end