diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2016-11-09 01:49:49 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2016-11-09 01:49:49 (GMT) |
commit | 2df715e74d6600ed0a5688a43f6ecd873957326a (patch) | |
tree | feeb09b609a1fea8ae4441a83107767007ccba37 /src/glibext | |
parent | e5808e7df6eb36ff8e150e57e8691a0b05222844 (diff) |
Loaded GTK CSS extensions from files in a given theme directory.
Diffstat (limited to 'src/glibext')
-rw-r--r-- | src/glibext/configuration.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/glibext/configuration.c b/src/glibext/configuration.c index 1dc7dc6..870bc72 100644 --- a/src/glibext/configuration.c +++ b/src/glibext/configuration.c @@ -1161,7 +1161,8 @@ GGenConfig *g_generic_config_new(const char *name) result = g_object_new(G_TYPE_GEN_CONFIG, NULL); - suffix = strdup("chrysalide/"); + suffix = strdup("chrysalide"); + suffix = stradd(suffix, G_DIR_SEPARATOR_S); suffix = stradd(suffix, name); suffix = stradd(suffix, ".xml"); |