Fix PCM update indicator color

This commit is contained in:
qu1ck 2023-05-02 03:51:53 -07:00 committed by Jeff Young
parent 7691cd9509
commit f840fe3d38
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@ BITMAP_BUTTON::BITMAP_BUTTON( wxWindow* aParent, wxWindowID aId, const wxPoint&
wxPanel( aParent, aId, aPos, aSize, aStyles ),
m_isRadioButton( false ),
m_showBadge( false ),
m_badgeColor( wxColor( 210, 0, 0, 0 ) ), // dark red
m_badgeColor( wxColor( 210, 0, 0 ) ), // dark red
m_badgeTextColor( wxColor( wxT( "white" ) ) ),
m_buttonState( 0 ),
m_padding( 0 ),