Skip to content

Commit

Permalink
SelfDrawnButton solo mode had incorrect hover colors (#7174)
Browse files Browse the repository at this point in the history
This corrects it so the scope is consistent with the mseg
in classic, dark, and royal all

Closes #7173
  • Loading branch information
baconpaul authored Aug 11, 2023
1 parent 3f72558 commit 58288a8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/surge-xt/gui/widgets/MultiSwitch.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -629,10 +629,10 @@ void MultiSwitchSelfDraw::paint(juce::Graphics &g)
{
if (solo)
{
g.setColour(skin->getColor(royalMode ? clr::HoverFill : clr::HoverOnFill));
g.setColour(skin->getColor(clr::HoverFill));
g.fillRoundedRectangle(fc.toFloat(), cornerIn);

fg = skin->getColor(royalMode ? clr::Text : clr::HoverOnText);
fg = skin->getColor(royalMode ? clr::Text : clr::TextHover);
}
else
{
Expand Down

0 comments on commit 58288a8

Please sign in to comment.