diff options
-rw-r--r-- | debian/changelog | 21 | ||||
-rw-r--r-- | src/accounts-service-user.vala | 3 |
2 files changed, 23 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog index 93626ad..4160769 100644 --- a/debian/changelog +++ b/debian/changelog @@ -12,6 +12,27 @@ indicator-sound (12.10.2+15.04.20141105-0ubuntu1) vivid; urgency=medium -- Ubuntu daily release <ps-jenkins@lists.canonical.com> Wed, 05 Nov 2014 17:56:29 +0000 +indicator-sound (12.10.2+14.10.20141021~rtm-0ubuntu1) 14.09; urgency=medium + + [ Ted Gould ] + * Silent Mode checkbox in indicator (LP: #1342151) + + -- Ubuntu daily release <ps-jenkins@lists.canonical.com> Tue, 21 Oct 2014 20:06:43 +0000 + +indicator-sound (12.10.2+14.10.20141016-0ubuntu1) 14.09; urgency=low + + [ Lars Uebernickel ] + * service.vala: don't call set_volume unnecessarily + + -- Ubuntu daily release <ps-jenkins@lists.canonical.com> Thu, 16 Oct 2014 13:31:43 +0000 + +indicator-sound (12.10.2+14.10.20141015.5~rtm-0ubuntu1) 14.09; urgency=low + + [ Ted Gould ] + * Show notifications on volume change (LP: #1378564) + + -- Ubuntu daily release <ps-jenkins@lists.canonical.com> Wed, 15 Oct 2014 16:19:12 +0000 + indicator-sound (12.10.2+14.10.20141010-0ubuntu1) utopic; urgency=low [ Ricardo Salveti de Araujo ] diff --git a/src/accounts-service-user.vala b/src/accounts-service-user.vala index ec52730..21e8431 100644 --- a/src/accounts-service-user.vala +++ b/src/accounts-service-user.vala @@ -211,7 +211,8 @@ public class AccountsServiceUser : Object { } }); - this.silentMode = this.syssoundproxy.silent_mode; + this._silentMode = this.syssoundproxy.silent_mode; + this.notify_property("silentMode"); } catch (Error e) { this.syssoundproxy = null; warning("Unable to get proxy to system sound settings: %s", e.message); |