diff options
author | Stefano Karapetsas <[email protected]> | 2013-08-03 08:47:52 -0700 |
---|---|---|
committer | Stefano Karapetsas <[email protected]> | 2013-08-03 08:47:52 -0700 |
commit | 5c3accdec44bf0293233308be2fd3afc0d5a2691 (patch) | |
tree | 3704842d097bc7d11d7384a7ea78d4b1601ddb79 /capplets | |
parent | e8d72543591c74ba8cc9e7255a77ddb97d1618f0 (diff) | |
parent | 5b87980235c3c355f873f9526b619b30f41c6cb0 (diff) | |
download | mate-control-center-5c3accdec44bf0293233308be2fd3afc0d5a2691.tar.bz2 mate-control-center-5c3accdec44bf0293233308be2fd3afc0d5a2691.tar.xz |
Merge pull request #64 from NiceandGently/master
use MATE defaults for appearance-themes
Diffstat (limited to 'capplets')
-rw-r--r-- | capplets/appearance/appearance-themes.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/capplets/appearance/appearance-themes.c b/capplets/appearance/appearance-themes.c index 57c175cd..b2dfbb1b 100644 --- a/capplets/appearance/appearance-themes.c +++ b/capplets/appearance/appearance-themes.c @@ -209,7 +209,7 @@ theme_load_from_gsettings (AppearanceData *data) theme->gtk_theme_name = g_settings_get_string (data->interface_settings, GTK_THEME_KEY); if (theme->gtk_theme_name == NULL) - theme->gtk_theme_name = g_strdup ("Clearlooks"); + theme->gtk_theme_name = g_strdup ("Menta"); scheme = g_settings_get_string (data->interface_settings, COLOR_SCHEME_KEY); if (scheme == NULL || !strcmp (scheme, "")) { @@ -220,11 +220,11 @@ theme_load_from_gsettings (AppearanceData *data) theme->marco_theme_name = g_settings_get_string (data->marco_settings, MARCO_THEME_KEY); if (theme->marco_theme_name == NULL) - theme->marco_theme_name = g_strdup ("Clearlooks"); + theme->marco_theme_name = g_strdup ("Menta"); theme->icon_theme_name = g_settings_get_string (data->interface_settings, ICON_THEME_KEY); if (theme->icon_theme_name == NULL) - theme->icon_theme_name = g_strdup ("mate"); + theme->icon_theme_name = g_strdup ("menta"); /* We need this because mate-control-center does not depend on mate-notification-daemon, * and if we try to get notification theme without schema installed, gsettings crashes |