From c3fa66a47d83c4c63069c3c1b75ae1f24d870ad4 Mon Sep 17 00:00:00 2001 From: Bunny67 Date: Sun, 22 Jul 2018 07:29:33 +0300 Subject: [PATCH] update ace3 skin --- ElvUI/Modules/Skins/Addons/Ace3.lua | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ElvUI/Modules/Skins/Addons/Ace3.lua b/ElvUI/Modules/Skins/Addons/Ace3.lua index 0bb6fa5..cc8d416 100644 --- a/ElvUI/Modules/Skins/Addons/Ace3.lua +++ b/ElvUI/Modules/Skins/Addons/Ace3.lua @@ -311,7 +311,7 @@ function S:SkinAce3() if TYPE == "ScrollFrame" then local frame = widget.scrollbar SkinScrollBar(frame) - elseif TYPE == "InlineGroup" or TYPE == "TreeGroup" or TYPE == "TabGroup-ElvUI" or TYPE == "Frame" or TYPE == "DropdownGroup" or TYPE == "Window" then + elseif TYPE == "InlineGroup" or TYPE == "TreeGroup" or TYPE == "TabGroup" or TYPE == "Frame" or TYPE == "DropdownGroup" or TYPE == "Window" then local frame = widget.content:GetParent() if TYPE == "Frame" then E:StripTextures(frame) @@ -378,16 +378,16 @@ function S:SkinAce3() end end - if TYPE == "TabGroup-ElvUI" then + if TYPE == "TabGroup" then local oldCreateTab = widget.CreateTab widget.CreateTab = function(self, id) local tab = oldCreateTab(self, id) E:StripTextures(tab) - tab.backdrop = CreateFrame("Frame", nil, tab) + --[[tab.backdrop = CreateFrame("Frame", nil, tab) E:SetTemplate(tab.backdrop, "Transparent") tab.backdrop:SetFrameLevel(tab:GetFrameLevel() - 1) E:Point(tab.backdrop, "TOPLEFT", 10, -3) - E:Point(tab.backdrop, "BOTTOMRIGHT", -10, 0) + E:Point(tab.backdrop, "BOTTOMRIGHT", -10, 0)]] return tab end end