Mercurial > wow > reaction
changeset 135:5c0591a31163
Fixed bug with bar overlay appearing behind buttons when ButtonFacade enabled
author | Flick <flickerstreak@gmail.com> |
---|---|
date | Wed, 18 Mar 2009 01:52:53 +0000 |
parents | d186e041ca14 |
children | b8a14165b807 |
files | classes/Overlay.lua |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/classes/Overlay.lua Tue Mar 17 23:38:38 2009 +0000 +++ b/classes/Overlay.lua Wed Mar 18 01:52:53 2009 +0000 @@ -463,7 +463,7 @@ -- child of UIParent so that alpha and scale doesn't propagate to it local overlay = CreateFrame("Button", nil, UIParent) overlay:EnableMouse(true) - overlay:SetFrameLevel(3) -- set it above the buttons + overlay:SetFrameLevel(10) -- set it above the buttons overlay:SetPoint("TOPLEFT", f, "TOPLEFT", -4, 4) overlay:SetPoint("BOTTOMRIGHT", f, "BOTTOMRIGHT", 4, -4) overlay:SetBackdrop({ @@ -713,7 +713,7 @@ end function overlay:LIBKEYBOUND_DISABLED(evt) - self:SetFrameLevel(3) + self:SetFrameLevel(10) end function overlay:RefreshControls()