1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-08-07 15:49:42 +02:00

Make default theme depend on EXPERIMENTAL_DA #define.

This commit is contained in:
James Crook 2017-04-03 13:18:34 +01:00
parent 0e3f4ce50c
commit 8c8f38079d

View File

@ -164,7 +164,11 @@ void GUIPrefs::PopulateOrExchange(ShuttleGui & S)
S.StartStatic(_("Theme"));
{
#ifdef EXPERIMENTAL_DA
S.StartRadioButtonGroup(wxT("/GUI/Theme"), wxT("dark"));
#else
S.StartRadioButtonGroup(wxT("/GUI/Theme"), wxT("classic"));
#endif
{
S.TieRadioButton(_("Classic"),
wxT("classic"));