~khurshid-alam/unity-settings-daemon/build-hirsute

« back to all changes in this revision

Viewing changes to plugins/updates/gsd-updates-manager.c

  • Committer: Bileto Bot
  • Author(s): Khurshid Alam
  • Date: 2020-03-11 16:32:10 UTC
  • mfrom: (4200.1.1 unity-settings-daemon)
  • Revision ID: ci-train-bot@canonical.com-20200311163210-ta55oofgp3pod2p6
* Port rest of the schemas gnome-settings-daemon-common to com.canonical.unity.settings-daemon. LP: #1842324

* When upstream moved persistant numlock-state to gsettings-desktop-schemas they converted it to boolean from enum. Since now we use our own schema, revert that change. This will make numlock work again in unity. Fixes LP: #1847858

 see https://gitlab.gnome.org/GNOME/gsettings-desktop-schemas/-/commit/d57c3c78336be544e1047127a27f9ddfcea6c8cb

* Remove gnome-settings-daemon-common from build dependency (LP: #1842324)

Approved by: Sebastien Bacher

Show diffs side-by-side

added added

removed removed

Lines of Context:
1322
1322
                          G_CALLBACK (settings_changed_cb), manager);
1323
1323
 
1324
1324
        /* get ftp settings */
1325
 
        manager->priv->settings_gsd = g_settings_new ("org.gnome.settings-daemon.plugins.updates");
 
1325
        manager->priv->settings_gsd = g_settings_new ("com.canonical.unity.settings-daemon.plugins.updates");
1326
1326
        g_signal_connect (manager->priv->settings_gsd, "changed",
1327
1327
                          G_CALLBACK (settings_gsd_changed_cb), manager);
1328
1328