summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWolfgang Ulbrich <[email protected]>2013-08-03 12:55:26 +0200
committerinfirit <[email protected]>2013-12-17 22:57:20 +0100
commitb944f26d0853aa903e485b7f29aab8d208bdb870 (patch)
tree0f3bbb0450a8711217cd4c5dfa0404bed27eab50
parent7c719d6bebe37bfff23e6c0b8241ebb94a086e0e (diff)
downloadmate-control-center-b944f26d0853aa903e485b7f29aab8d208bdb870.tar.bz2
mate-control-center-b944f26d0853aa903e485b7f29aab8d208bdb870.tar.xz
use MATE defaults for appearance-themes
-rw-r--r--capplets/appearance/appearance-themes.c6
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