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

« back to all changes in this revision

Viewing changes to plugins/orientation/gsd-orientation-manager.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:
487
487
 
488
488
        manager->priv->start_idle_id = 0;
489
489
        manager->priv->settings = g_settings_new (CONF_SCHEMA);
490
 
        manager->priv->orientation_lock = g_settings_get_boolean (manager->priv->settings, ORIENTATION_LOCK_KEY);
491
490
        g_signal_connect (G_OBJECT (manager->priv->settings), "changed::orientation-lock",
492
491
                          G_CALLBACK (orientation_lock_changed_cb), manager);
493
 
 
 
492
        manager->priv->orientation_lock = g_settings_get_boolean (manager->priv->settings, ORIENTATION_LOCK_KEY);
494
493
        manager->priv->client = g_udev_client_new (subsystems);
495
494
        dev = get_accelerometer (manager->priv->client);
496
495
        if (dev == NULL) {