diff options
author | Ted Gould <ted@gould.cx> | 2014-10-15 09:15:26 -0500 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2014-10-15 09:15:26 -0500 |
commit | c104a2064c6e328a20d134d5985828ba913b2bce (patch) | |
tree | fd1fc33f62bbde5a306cbafc0babf446f6bfbccb /src/service.vala | |
parent | 714687351a4eb93f3fc712ef3ce2459371075142 (diff) | |
parent | 46c7d4c1cb1a6552ba205beaf233d66dcd4fc8a7 (diff) | |
download | ayatana-indicator-sound-c104a2064c6e328a20d134d5985828ba913b2bce.tar.gz ayatana-indicator-sound-c104a2064c6e328a20d134d5985828ba913b2bce.tar.bz2 ayatana-indicator-sound-c104a2064c6e328a20d134d5985828ba913b2bce.zip |
Fixes for icon values and manual tests
Diffstat (limited to 'src/service.vala')
-rw-r--r-- | src/service.vala | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/service.vala b/src/service.vala index 64a89fd..bd44b0d 100644 --- a/src/service.vala +++ b/src/service.vala @@ -186,6 +186,8 @@ public class IndicatorSound.Service: Object { double v = this.volume_control.get_volume () + volume_step_percentage * delta; this.volume_control.set_volume (v.clamp (0.0, this.max_volume)); + /* TODO: Don't want to mess up the desktop today, but we should remove this + scrolling change and merge that into volume control's notification */ if (this.notification != null) { string icon; if (v <= 0.0) |