1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-10-21 14:02:57 +02:00

Make light theme default.

Or as our RM said, 'Let it be Light'.
This commit is contained in:
James Crook
2017-06-09 19:36:46 +01:00
parent adc7312954
commit 64a28861a0
2 changed files with 3 additions and 3 deletions

View File

@@ -240,7 +240,7 @@ bool ThemeBase::LoadPreferredTheme()
#ifdef EXPERIMENTAL_DA
wxString theme = gPrefs->Read(wxT("/GUI/Theme"), wxT("dark"));
#else
wxString theme = gPrefs->Read(wxT("/GUI/Theme"), wxT("classic"));
wxString theme = gPrefs->Read(wxT("/GUI/Theme"), wxT("light"));
#endif
theTheme.LoadTheme( theTheme.ThemeTypeOfTypeName( theme ) );
@@ -907,7 +907,7 @@ teThemeType ThemeBase::GetFallbackThemeType(){
#ifdef EXPERIMENTAL_DA
return themeDark;
#else
return themeClassic;
return themeLight;
#endif
}