diff options
author | Jason Conti <jason.conti@gmail.com> | 2020-08-21 14:58:52 +0200 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2020-08-21 14:59:03 +0200 |
commit | ab788386e4d79b0199741388e55d8a4032f6e9cc (patch) | |
tree | adcb4fca79d0cf1a0f9bc37b68c41eff83f0a436 /src | |
parent | aca92b39f32f0d850f5a74b79591a587273c2168 (diff) | |
download | ayatana-indicator-notifications-ab788386e4d79b0199741388e55d8a4032f6e9cc.tar.gz ayatana-indicator-notifications-ab788386e4d79b0199741388e55d8a4032f6e9cc.tar.bz2 ayatana-indicator-notifications-ab788386e4d79b0199741388e55d8a4032f6e9cc.zip |
src/indicator-notifications: settings_try_set_boolean(): Enable the recursive schema lookup so we have a better chance of finding it.
Diffstat (limited to 'src')
-rw-r--r-- | src/indicator-notifications.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/indicator-notifications.c b/src/indicator-notifications.c index e5f2951..56ddd7a 100644 --- a/src/indicator-notifications.c +++ b/src/indicator-notifications.c @@ -670,7 +670,7 @@ settings_try_set_boolean(const gchar *schema, const gchar *key, gboolean value) } /* Lookup the schema */ - GSettingsSchema *source_schema = g_settings_schema_source_lookup(source, schema, FALSE); + GSettingsSchema *source_schema = g_settings_schema_source_lookup(source, schema, TRUE); /* Couldn't find the schema */ if (source_schema == NULL) { |