1
0
Fork 0
mirror of https://gitlab.gnome.org/GNOME/calls.git synced 2025-01-09 21:35:32 +00:00

settings: Add GSettings bindings

(cherry picked from commit 04d391c5dd)
This commit is contained in:
Evangelos Ribeiro Tzaras 2021-09-23 08:33:41 +02:00
parent c1117b4ec5
commit a9ca5a3566

View file

@ -117,6 +117,10 @@ calls_settings_constructed (GObject *object)
g_settings_bind (self->settings, "auto-use-default-origins",
self, "auto-use-default-origins", G_SETTINGS_BIND_DEFAULT);
g_settings_bind (self->settings, "country-code",
self, "country-code", G_SETTINGS_BIND_DEFAULT);
g_settings_bind (self->settings, "autoload-plugins",
self, "autoload-plugins", G_SETTINGS_BIND_DEFAULT);
G_OBJECT_CLASS (calls_settings_parent_class)->constructed (object);
}