From adfdafbfdba57f79a588aa6104e2b2aebbea98f0 Mon Sep 17 00:00:00 2001 From: shagu Date: Sat, 3 Mar 2018 19:26:38 +0100 Subject: [PATCH] thirdparty: only apply transparency for chatbg --- modules/thirdparty.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/thirdparty.lua b/modules/thirdparty.lua index d3455444..c3681203 100644 --- a/modules/thirdparty.lua +++ b/modules/thirdparty.lua @@ -151,7 +151,7 @@ pfUI:RegisterModule("thirdparty", function () KLHTM_Gui.title.back:Hide() KLHTM_SetGuiScale(.9) - CreateBackdrop(KLHTM_Frame, nil, nil, .8) + CreateBackdrop(KLHTM_Frame, nil, nil, (C.thirdparty.chatbg == "1" and .8)) if C.thirdparty.chatbg == "1" and C.chat.global.custombg == "1" then local r, g, b, a = strsplit(",", C.chat.global.background) @@ -272,7 +272,7 @@ pfUI:RegisterModule("thirdparty", function () for k, val in pairs(DPSMateSettings["windows"]) do local frame = _G["DPSMate_"..val["name"]] - CreateBackdrop(frame, nil, nil, .8) + CreateBackdrop(frame, nil, nil, (C.thirdparty.chatbg == "1" and .8)) if C.thirdparty.chatbg == "1" and C.chat.global.custombg == "1" then local r, g, b, a = strsplit(",", C.chat.global.background) @@ -336,7 +336,7 @@ pfUI:RegisterModule("thirdparty", function () SW_BarFrame1.swoBarY = -22 _G.SW_BARSEPY = 1 - CreateBackdrop(SW_BarFrame1, nil, nil, .8) + CreateBackdrop(SW_BarFrame1, nil, nil, (C.thirdparty.chatbg == "1" and .8)) if C.thirdparty.chatbg == "1" and C.chat.global.custombg == "1" then local r, g, b, a = strsplit(",", C.chat.global.background)