From 1abb4de82f58174f77e32551a481d2fd5b5bcace Mon Sep 17 00:00:00 2001 From: shagu Date: Sun, 21 Oct 2018 19:19:02 +0200 Subject: [PATCH] buffwatch: remove static height assignment --- modules/buffwatch.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/buffwatch.lua b/modules/buffwatch.lua index 16687d56..7c73fa8b 100644 --- a/modules/buffwatch.lua +++ b/modules/buffwatch.lua @@ -142,7 +142,7 @@ pfUI:RegisterModule("buffwatch", function () frame = _G[framename] or CreateFrame("Button", framename, parent) frame:EnableMouse(1) frame:Hide() - frame:SetPoint("BOTTOM", 0, (bar-1)*(20+2*border+1)) + frame:SetPoint("BOTTOM", 0, (bar-1)*(height+2*border+1)) frame:SetWidth(width) frame:SetHeight(height)