Commit f5dc83cb3b30c7deab51b5a56f04d11cfef49383
1 parent
a64f9b81
Exists in
master
and in
4 other branches
Small fix on the setting loader.
Showing
1 changed file
with
3 additions
and
3 deletions
Show diff stats
src/objects/window/application.c
... | ... | @@ -131,10 +131,10 @@ |
131 | 131 | #endif // _WIN32 |
132 | 132 | |
133 | 133 | // Get settings |
134 | - g_autofree gchar * path = g_strconcat("/apps/" PACKAGE_NAME "/", g_get_application_name(),"/",NULL); | |
135 | - debug("path=%s",path); | |
136 | - | |
137 | 134 | { |
135 | + g_autofree gchar * path = g_strconcat("/apps/" PACKAGE_NAME "/", g_get_application_name(),"/",NULL); | |
136 | + debug("path=%s",path); | |
137 | + | |
138 | 138 | #ifdef DEBUG |
139 | 139 | GError * error = NULL; |
140 | 140 | GSettingsSchemaSource * source = | ... | ... |