From a91528f94b6ca8d2b74458f8db967b725761a876 Mon Sep 17 00:00:00 2001 From: HiddenDingo <123598634+HiddenDingo@users.noreply.github.com> Date: Wed, 25 Jan 2023 21:52:05 +0000 Subject: [PATCH 1/4] Update ReputationFrame.lua --- Skin/Retail/Interface/FrameXML/ReputationFrame.lua | 1 - 1 file changed, 1 deletion(-) diff --git a/Skin/Retail/Interface/FrameXML/ReputationFrame.lua b/Skin/Retail/Interface/FrameXML/ReputationFrame.lua index fbecd759..4c4cbaba 100644 --- a/Skin/Retail/Interface/FrameXML/ReputationFrame.lua +++ b/Skin/Retail/Interface/FrameXML/ReputationFrame.lua @@ -141,7 +141,6 @@ function private.FrameXML.ReputationFrame() detailBG:SetPoint("TOPLEFT", repDetailBG, 1, -1) detailBG:SetPoint("BOTTOMRIGHT", repDetailBG, "TOPRIGHT", -1, -142) detailBG:SetColorTexture(Color.button:GetRGB()) - _G.ReputationDetailCorner:Hide() _G.ReputationDetailDivider:SetColorTexture(Color.frame:GetRGB()) _G.ReputationDetailDivider:ClearAllPoints() From 2fc18fb9fe662e4e9a0ea3bb334f42f90721653c Mon Sep 17 00:00:00 2001 From: HiddenDingo <123598634+HiddenDingo@users.noreply.github.com> Date: Wed, 25 Jan 2023 21:53:40 +0000 Subject: [PATCH 2/4] Removed _G.RaidInfoDetailCorner:Hide() --- Skin/Retail/Interface/FrameXML/RaidFrame.lua | 1 - 1 file changed, 1 deletion(-) diff --git a/Skin/Retail/Interface/FrameXML/RaidFrame.lua b/Skin/Retail/Interface/FrameXML/RaidFrame.lua index c458cabe..c69b75d5 100644 --- a/Skin/Retail/Interface/FrameXML/RaidFrame.lua +++ b/Skin/Retail/Interface/FrameXML/RaidFrame.lua @@ -34,7 +34,6 @@ function private.FrameXML.RaidFrame() _G.RaidInfoDetailHeader:Hide() _G.RaidInfoDetailFooter:Hide() - _G.RaidInfoDetailCorner:Hide() Skin.RaidInfoHeaderTemplate(_G.RaidInfoInstanceLabel) Skin.RaidInfoHeaderTemplate(_G.RaidInfoIDLabel) From aeb757190be80e1fa49fb796b19fc14a7cce5148 Mon Sep 17 00:00:00 2001 From: HiddenDingo <123598634+HiddenDingo@users.noreply.github.com> Date: Wed, 25 Jan 2023 21:54:22 +0000 Subject: [PATCH 3/4] Removed TokenFramePopup.Corner:Hide() --- Skin/Retail/Interface/AddOns/Blizzard_TokenUI.lua | 2 -- 1 file changed, 2 deletions(-) diff --git a/Skin/Retail/Interface/AddOns/Blizzard_TokenUI.lua b/Skin/Retail/Interface/AddOns/Blizzard_TokenUI.lua index cf9caddd..3bf1a4b5 100644 --- a/Skin/Retail/Interface/AddOns/Blizzard_TokenUI.lua +++ b/Skin/Retail/Interface/AddOns/Blizzard_TokenUI.lua @@ -118,8 +118,6 @@ function private.AddOns.Blizzard_TokenUI() titleText:SetPoint("TOPLEFT") titleText:SetPoint("BOTTOMRIGHT", TokenFramePopup, "TOPRIGHT", 0, -private.FRAME_TITLE_HEIGHT) - TokenFramePopup.Corner:Hide() - Skin.UICheckButtonTemplate(TokenFramePopup.InactiveCheckBox) TokenFramePopup.InactiveCheckBox:SetPoint("TOPLEFT", TokenFramePopup, 24, -26) Skin.UICheckButtonTemplate(TokenFramePopup.BackpackCheckBox) From aaf042274b5564a526bb5f853bb998619001c953 Mon Sep 17 00:00:00 2001 From: HiddenDingo <123598634+HiddenDingo@users.noreply.github.com> Date: Wed, 25 Jan 2023 22:08:58 +0000 Subject: [PATCH 4/4] Updated CreateChannelPopup Changed CreateChannelPopup to Header to solve Blizzard renaming the component Removed CreateChannelPopup Titlebar/Corner since they were removed --- Skin/Retail/Interface/AddOns/Blizzard_Channels.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Skin/Retail/Interface/AddOns/Blizzard_Channels.lua b/Skin/Retail/Interface/AddOns/Blizzard_Channels.lua index 5396aeb3..2c66dbe7 100644 --- a/Skin/Retail/Interface/AddOns/Blizzard_Channels.lua +++ b/Skin/Retail/Interface/AddOns/Blizzard_Channels.lua @@ -131,9 +131,9 @@ function private.AddOns.Blizzard_Channels() Skin.DialogBorderTemplate(CreateChannelPopup.BG) local bg = CreateChannelPopup.BG:GetBackdropTexture("bg") - CreateChannelPopup.Title:ClearAllPoints() - CreateChannelPopup.Title:SetPoint("TOPLEFT", bg) - CreateChannelPopup.Title:SetPoint("BOTTOMRIGHT", bg, "TOPRIGHT", 0, -private.FRAME_TITLE_HEIGHT) + CreateChannelPopup.Header:ClearAllPoints() + CreateChannelPopup.Header:SetPoint("TOPLEFT", bg) + CreateChannelPopup.Header:SetPoint("BOTTOMRIGHT", bg, "TOPRIGHT", 0, -private.FRAME_TITLE_HEIGHT) CreateChannelPopup.Titlebar:Hide() CreateChannelPopup.Corner:Hide()