diff options
author | Ted Gould <ted@gould.cx> | 2014-10-14 23:39:04 -0500 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2014-10-14 23:39:04 -0500 |
commit | 714687351a4eb93f3fc712ef3ce2459371075142 (patch) | |
tree | 4aa8bd2ddadbd24b68a0fde524fd32b7092af390 | |
parent | 9df8760dbe15d187e133c53a4f93a421f4178445 (diff) | |
parent | 0414b149396497e4c837a126d1945905ceb2623c (diff) | |
download | ayatana-indicator-sound-714687351a4eb93f3fc712ef3ce2459371075142.tar.gz ayatana-indicator-sound-714687351a4eb93f3fc712ef3ce2459371075142.tar.bz2 ayatana-indicator-sound-714687351a4eb93f3fc712ef3ce2459371075142.zip |
Correct property name
-rw-r--r-- | src/service.vala | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/service.vala b/src/service.vala index 94b0645..64a89fd 100644 --- a/src/service.vala +++ b/src/service.vala @@ -373,7 +373,7 @@ public class IndicatorSound.Service: Object { Action create_high_volume_actions () { var high_volume_action = new SimpleAction.stateful("high-volume", null, new Variant.boolean (this.volume_control.high_volume)); - this.volume_control.notify["high_volume"].connect( () => + this.volume_control.notify["high-volume"].connect( () => high_volume_action.set_state(new Variant.boolean (this.volume_control.high_volume))); return high_volume_action; |