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
}

View File

@ -126,7 +126,7 @@ void GUIPrefs::PopulateOrExchange(ShuttleGui & S)
#ifdef EXPERIMENTAL_DA
const wxString defaultTheme = wxT("dark");
#else
const wxString defaultTheme = wxT("classic");
const wxString defaultTheme = wxT("light");
#endif
const wxString defaultRange = wxString::Format(wxT("%d"), ENV_DB_RANGE);