mirror of
https://github.com/cookiengineer/audacity
synced 2025-10-22 14:32:58 +02:00
Make light theme default.
Or as our RM said, 'Let it be Light'.
This commit is contained in:
@@ -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
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -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);
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user