1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-10-22 06:22:58 +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 #ifdef EXPERIMENTAL_DA
wxString theme = gPrefs->Read(wxT("/GUI/Theme"), wxT("dark")); wxString theme = gPrefs->Read(wxT("/GUI/Theme"), wxT("dark"));
#else #else
wxString theme = gPrefs->Read(wxT("/GUI/Theme"), wxT("classic")); wxString theme = gPrefs->Read(wxT("/GUI/Theme"), wxT("light"));
#endif #endif
theTheme.LoadTheme( theTheme.ThemeTypeOfTypeName( theme ) ); theTheme.LoadTheme( theTheme.ThemeTypeOfTypeName( theme ) );
@@ -907,7 +907,7 @@ teThemeType ThemeBase::GetFallbackThemeType(){
#ifdef EXPERIMENTAL_DA #ifdef EXPERIMENTAL_DA
return themeDark; return themeDark;
#else #else
return themeClassic; return themeLight;
#endif #endif
} }

View File

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