aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTed Gould <ted@gould.cx>2014-10-14 23:38:00 -0500
committerTed Gould <ted@gould.cx>2014-10-14 23:38:00 -0500
commit0414b149396497e4c837a126d1945905ceb2623c (patch)
tree25b38e3eef0fe6853cda9a6dcf15082ef2539e65 /src
parent69b9c090d86e46a0af7e74e68ded1d0f5b4c52cd (diff)
downloadayatana-indicator-sound-0414b149396497e4c837a126d1945905ceb2623c.tar.gz
ayatana-indicator-sound-0414b149396497e4c837a126d1945905ceb2623c.tar.bz2
ayatana-indicator-sound-0414b149396497e4c837a126d1945905ceb2623c.zip
Get propery property name
Diffstat (limited to 'src')
-rw-r--r--src/service.vala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/service.vala b/src/service.vala
index 8f58110..b4c7c44 100644
--- a/src/service.vala
+++ b/src/service.vala
@@ -396,7 +396,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;