Skip to content

Commit

Permalink
10.2.0 (52129)
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Nov 14, 2023
1 parent b4e1e61 commit 982367f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
2 changes: 0 additions & 2 deletions Interface/FrameXML/EventToastManager.lua
Original file line number Diff line number Diff line change
Expand Up @@ -165,8 +165,6 @@ function EventToastManagerFrameMixin:AreAnimationsPaused()
end

function EventToastManagerFrameMixin:PauseAnimations()
-- TODO: Tech debt: currentDisplayingToast does not take non-EventToastManager toasts into consideration <WOW10-127543>
-- ^ We should be setting it or checking to see if there are other TopBannerManager toasts playing or paused...
if(self.animationsPaused or not (self.currentDisplayingToast and (self.currentDisplayingToast:GetAlpha() > 0))) then
return;
end
Expand Down
2 changes: 2 additions & 0 deletions Interface/FrameXML/GossipFrameShared.lua
Original file line number Diff line number Diff line change
Expand Up @@ -90,9 +90,11 @@ function GossipOptionButtonMixin:Setup(optionInfo)

if QuestUtil.QuestTextContrastUseLightText() then
local textColor, titleTextColor = GetMaterialTextColors("Stone");
self:GetFontString():SetFixedColor(true);
self:GetFontString():SetTextColor(textColor[1], textColor[2], textColor[3]);
else
local textColor, titleTextColor = GetMaterialTextColors("Parchment");
self:GetFontString():SetFixedColor(false);
self:GetFontString():SetTextColor(textColor[1], textColor[2], textColor[3]);
end
end
Expand Down
4 changes: 1 addition & 3 deletions Interface/FrameXML/TopBannerManager.lua
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,6 @@ end
function TopBannerManager_LoadingScreenEnabled()
if ( TopBannerMgr.currentBanner ) then
TopBannerMgr.currentBanner.frame:StopBanner();

TopBannerQueue = {}; -- clear out banner queue;
end
end

Expand All @@ -47,7 +45,7 @@ function TopBannerManager_LoadingScreenDisabled()
if ( currentBanner and currentBanner.frame.ResumeBanner ) then
currentBanner.frame:ResumeBanner(currentBanner.data);
else
TopBannerMgr.currentBanner = nil;
TopBannerManager_BannerFinished();
end
end

Expand Down

0 comments on commit 982367f

Please sign in to comment.