This commit is contained in:
Crum
2018-08-17 00:33:58 -05:00
parent 5f4d599573
commit 426d8f7893
+2 -2
View File
@@ -350,7 +350,7 @@ end
function AB:Bar_OnEnter() function AB:Bar_OnEnter()
if this:GetParent() == self.fadeParent then if this:GetParent() == self.fadeParent then
if not self.fadeParent.mouseLock then if not self.fadeParent.mouseLock then
E:UIFrameFadeIn(self.fadeParent, 0.2, self.fadeParent:GetAlpha(), 1) UIFrameFadeIn(self.fadeParent, 0.2, self.fadeParent:GetAlpha(), 1)
end end
end end
@@ -362,7 +362,7 @@ end
function AB:Bar_OnLeave() function AB:Bar_OnLeave()
if this:GetParent() == self.fadeParent then if this:GetParent() == self.fadeParent then
if not self.fadeParent.mouseLock then if not self.fadeParent.mouseLock then
E:UIFrameFadeOut(self.fadeParent, 0.2, self.fadeParent:GetAlpha(), 1 - self.db.globalFadeAlpha) UIFrameFadeOut(self.fadeParent, 0.2, self.fadeParent:GetAlpha(), 1 - self.db.globalFadeAlpha)
end end
end end