aboutsummaryrefslogtreecommitdiff
path: root/src/accounts-service-access.vala
diff options
context:
space:
mode:
Diffstat (limited to 'src/accounts-service-access.vala')
-rw-r--r--src/accounts-service-access.vala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/accounts-service-access.vala b/src/accounts-service-access.vala
index fb15700..eebd87d 100644
--- a/src/accounts-service-access.vala
+++ b/src/accounts-service-access.vala
@@ -95,7 +95,7 @@ public class AccountsServiceAccess : Object
Variant volume_variant = changed_properties.lookup_value ("Volume", VariantType.DOUBLE);
if (volume_variant != null) {
var volume = volume_variant.get_double ();
- if (volume >= 0) {
+ if (volume >= 0 && _volume != volume) {
_volume = volume;
this.notify_property("volume");
}