~ubuntu-branches/ubuntu/wily/unity-settings-daemon/wily-proposed

« back to all changes in this revision

Viewing changes to plugins/xsettings/gsd-xsettings-gtk.c

  • Committer: Package Import Robot
  • Author(s): Sebastien Bacher, Bastien Nocera, Carlos Garnacho, Cosimo Cecchi, Florian Müllner, Jan Alexander Steffens (heftig), Kalev Lember, Matthias Clasen, Peter Hutterer, Ryan Lortie, Sebastien Bacher
  • Date: 2015-10-08 16:15:07 UTC
  • mfrom: (1.1.34)
  • Revision ID: package-import@ubuntu.com-20151008161507-2ox0t1y8guybhioq
Tags: 15.04.1+15.10.20151008-0ubuntu1
[ Bastien Nocera ]
* housekeeping: Don't follow symlinks to subdirectories, that can lead
  to data being deleted that shouldn't
* media-keys: Postpone initialisation of libcanberra

[ Carlos Garnacho ]
* [xsettings] backport some small fixes from upstream, should fix
  issues where settings changes are delayed

[ Cosimo Cecchi ]
* housekeeping: Don't follow symlinks to subdirectories, that can lead
  to data being deleted that shouldn't

[ Florian Müllner ]
* [xsettings] backport some small fixes from upstream, should fix
  issues where settings changes are delayed

[ Jan Alexander Steffens (heftig) ]
* [xsettings] backport some small fixes from upstream, should fix
  issues where settings changes are delayed

[ Kalev Lember ]
* [xsettings] backport some small fixes from upstream, should fix
  issues where settings changes are delayed

[ Matthias Clasen ]
* [xsettings] backport some small fixes from upstream, should fix
  issues where settings changes are delayed

[ Peter Hutterer ]
* Backport changes from upstream git and
  https://bugzilla.gnome.org/show_bug.cgi?id=724789 to better handle
  XError

[ Ryan Lortie ]
* [xsettings] backport some small fixes from upstream, should fix
  issues where settings changes are delayed

[ Sebastien Bacher ]
* [orientation] tweaked version of upstream fix for settings updates
* [xrandr] slightly updated version of an upstream bugfix for a
  segfault issue (LP: #1298024)

Show diffs side-by-side

added added

removed removed

Lines of Context:
122
122
                key = g_key_file_get_string (keyfile, "GTK Module", "X-GTK-Module-Enabled-Key", NULL);
123
123
 
124
124
                settings = g_settings_new (schema);
125
 
                enabled = g_settings_get_boolean (settings, key);
126
125
 
127
126
                gtk->priv->cond_settings = g_list_prepend (gtk->priv->cond_settings, settings);
128
127
 
130
129
 
131
130
                signal = g_strdup_printf ("changed::%s", key);
132
131
                g_signal_connect_object (G_OBJECT (settings), signal, G_CALLBACK (cond_setting_changed), gtk, 0);
 
132
                enabled = g_settings_get_boolean (settings, key);
133
133
                g_free (signal);
134
134
                g_free (schema);
135
135
                g_free (key);