From 120abe4fbc1ac229922d624196a69db4b0d83e16 Mon Sep 17 00:00:00 2001 From: Xinhuan Date: Tue, 28 Oct 2008 23:59:33 +0800 Subject: [PATCH] Fix Omen's overall alpha setting not applying on login. --- Omen.lua | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Omen.lua b/Omen.lua index 2d6f1fd..cad78ce 100644 --- a/Omen.lua +++ b/Omen.lua @@ -458,6 +458,7 @@ function Omen:PLAYER_LOGIN() -- It cannot be earlier than PLAYER_LOGIN because layout-cache.txt -- is loaded just before this event fires. self:SetAnchors(true) + self.Anchor:SetAlpha(db.Alpha) self:UpdateBackdrop() self:UpdateTitleBar() self:UpdateGrips() @@ -546,6 +547,7 @@ end function Omen:OnProfileChanged(event, database, newProfileKey) db = database.profile self:SetAnchors(true) + self.Anchor:SetAlpha(db.Alpha) self:UpdateBackdrop() self:UpdateTitleBar() self:UpdateGrips()