diff options
author | Perberos <[email protected]> | 2012-02-22 01:47:46 -0300 |
---|---|---|
committer | Perberos <[email protected]> | 2012-02-22 01:47:46 -0300 |
commit | c5dfae990e8a774fa3b88454dd5a303cee902573 (patch) | |
tree | 7670beb5de50d48e2687eabef0c5957c1a537c6f /capplets/common | |
parent | 73ff1adc61a874f496a3fbef059f3630aaa182e5 (diff) | |
download | mate-control-center-c5dfae990e8a774fa3b88454dd5a303cee902573.tar.bz2 mate-control-center-c5dfae990e8a774fa3b88454dd5a303cee902573.tar.xz |
g_get_user_config_dir() would be better (https://github.com/mate-desktop/mate-panel/issues/8)
Diffstat (limited to 'capplets/common')
-rw-r--r-- | capplets/common/mate-theme-info.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/capplets/common/mate-theme-info.c b/capplets/common/mate-theme-info.c index b15abafe..39d721a2 100644 --- a/capplets/common/mate-theme-info.c +++ b/capplets/common/mate-theme-info.c @@ -637,7 +637,12 @@ read_current_cursor_font (void) gchar *dir_name; struct dirent *file_dirent; - dir_name = g_build_filename (g_get_home_dir (), ".config/mate/share/cursor-fonts", NULL); + #if GLIB_CHECK_VERSION(2, 6, 0) + dir_name = g_build_filename(g_get_user_config_dir(), "mate", "share", "cursor-fonts", NULL); + #else // glib version < 2.6.0 + dir_name = g_build_filename(g_get_home_dir(), ".config", "mate", "share", "cursor-fonts", NULL); + #endif + if (! g_file_test (dir_name, G_FILE_TEST_EXISTS)) { g_free (dir_name); return NULL; |