diff options
author | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2024-05-22 08:39:31 +0200 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2024-05-22 08:39:31 +0200 |
commit | ffec0d45cd0a8c79c82abc702d35fa1259c26855 (patch) | |
tree | 55e1b9c374666a85acb22c6fdcab185c1de564b4 | |
parent | 4d95bad3cdd4da47d47124a15bbad2a241fc6b59 (diff) | |
parent | 50b2197c978fbfe7fd323e211aaacf7d4260e902 (diff) | |
download | ayatana-indicator-display-ffec0d45cd0a8c79c82abc702d35fa1259c26855.tar.gz ayatana-indicator-display-ffec0d45cd0a8c79c82abc702d35fa1259c26855.tar.bz2 ayatana-indicator-display-ffec0d45cd0a8c79c82abc702d35fa1259c26855.zip |
Merge branch 'OPNA2608-fix/recursive-schema-lookup'
Attributes GH PR #98: https://github.com/AyatanaIndicators/ayatana-indicator-display/pull/98
-rw-r--r-- | src/service.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/service.cpp b/src/service.cpp index b26664a..e734437 100644 --- a/src/service.cpp +++ b/src/service.cpp @@ -76,7 +76,7 @@ public: { if (ayatana_common_utils_is_lomiri()) { - GSettingsSchema *pSchema = g_settings_schema_source_lookup(pSource, "com.lomiri.touch.system", FALSE); + GSettingsSchema *pSchema = g_settings_schema_source_lookup(pSource, "com.lomiri.touch.system", TRUE); if (pSchema != NULL) { @@ -91,7 +91,7 @@ public: } else { - GSettingsSchema *pSchema = g_settings_schema_source_lookup(pSource, "org.ayatana.indicator.display", FALSE); + GSettingsSchema *pSchema = g_settings_schema_source_lookup(pSource, "org.ayatana.indicator.display", TRUE); if (pSchema != NULL) { @@ -134,7 +134,7 @@ public: } } - pSchema = g_settings_schema_source_lookup (pSource, sSchema, FALSE); + pSchema = g_settings_schema_source_lookup (pSource, sSchema, TRUE); if (pSchema != NULL) { @@ -146,7 +146,7 @@ public: g_error("No %s schema could be found", sSchema); } - pSchema = g_settings_schema_source_lookup (pSource, sCursorSchema, FALSE); + pSchema = g_settings_schema_source_lookup (pSource, sCursorSchema, TRUE); if (pSchema != NULL) { @@ -158,7 +158,7 @@ public: g_error("No %s schema could be found", sCursorSchema); } - pSchema = g_settings_schema_source_lookup (pSource, sMetacitySchema, FALSE); + pSchema = g_settings_schema_source_lookup (pSource, sMetacitySchema, TRUE); if (pSchema != NULL) { @@ -179,7 +179,7 @@ public: sSchema = "org.gnome.desktop.interface"; } - pSchema = g_settings_schema_source_lookup (pSource, sSchema, FALSE); + pSchema = g_settings_schema_source_lookup (pSource, sSchema, TRUE); if (pSchema != NULL) { |