diff --git a/common/dialogs/panel_color_settings.cpp b/common/dialogs/panel_color_settings.cpp index dfe8dd0910..a0c0f29c66 100644 --- a/common/dialogs/panel_color_settings.cpp +++ b/common/dialogs/panel_color_settings.cpp @@ -193,20 +193,16 @@ void PANEL_COLOR_SETTINGS::OnThemeChanged( wxCommandEvent& event ) void PANEL_COLOR_SETTINGS::updateSwatches() { if( m_swatches.empty() ) - { createSwatches(); - } - else - { - bool isReadOnly = m_currentSettings->IsReadOnly(); - COLOR4D background = m_currentSettings->GetColor( m_backgroundLayer ); - for( std::pair<int, COLOR_SWATCH*> pair : m_swatches ) - { - pair.second->SetSwatchBackground( background ); - pair.second->SetSwatchColor( m_currentSettings->GetColor( pair.first ), false ); - pair.second->SetReadOnly( isReadOnly ); - } + bool isReadOnly = m_currentSettings->IsReadOnly(); + COLOR4D background = m_currentSettings->GetColor( m_backgroundLayer ); + + for( std::pair<int, COLOR_SWATCH*> pair : m_swatches ) + { + pair.second->SetSwatchBackground( background ); + pair.second->SetSwatchColor( m_currentSettings->GetColor( pair.first ), false ); + pair.second->SetReadOnly( isReadOnly ); } }