From af69c56a0e84636f8c3a7b5cdd909ce00ff373b4 Mon Sep 17 00:00:00 2001 From: Christopher Tse Date: Tue, 17 Jan 2023 16:24:09 +1100 Subject: [PATCH] Fixed an issue where the path to button images was wrong --- MainFrame.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/MainFrame.lua b/MainFrame.lua index 040e419..a744c8d 100644 --- a/MainFrame.lua +++ b/MainFrame.lua @@ -227,7 +227,7 @@ function SetVisibility(self, visible, init) removeVisibilityScripts(SettingsButton); removeVisibilityScripts(HideButton); removeVisibilityScripts(ColorDropdownButton); - HideButtonTexture:SetTexture("Interface/Addons/RoleplayChatBubbles/button/UI-showButton"); + HideButtonTexture:SetTexture("Interface/Addons/SpeakerBee/button/UI-showButton"); else local showShadow = (not init) or settings.get("SHADOW_LOAD"); self:SetAlpha(showShadow and 0.5 or 0); @@ -236,7 +236,7 @@ function SetVisibility(self, visible, init) addVisibilityScripts(SettingsButton); addVisibilityScripts(HideButton); addVisibilityScripts(ColorDropdownButton); - HideButtonTexture:SetTexture("Interface/Addons/RoleplayChatBubbles/button/UI-hideButton"); + HideButtonTexture:SetTexture("Interface/Addons/SpeakerBee/button/UI-hideButton"); end end -- 1.7.9.5