Fix fallback color theme name

Fixes https://gitlab.com/kicad/code/kicad/-/issues/6064
This commit is contained in:
Jon Evans 2020-10-19 11:12:31 -04:00
parent d0ddc909dc
commit a28f154cc5
1 changed files with 1 additions and 1 deletions

View File

@ -177,7 +177,7 @@ COLOR_SETTINGS* SETTINGS_MANAGER::GetColorSettings( const wxString& aName )
// This had better work
if( !ret )
ret = m_color_settings.at( "user" );
ret = m_color_settings.at( "_builtin_default" );
return ret;
}