diff options
author | charles kerr <charlesk@canonical.com> | 2015-12-19 22:14:31 -0600 |
---|---|---|
committer | charles kerr <charlesk@canonical.com> | 2015-12-19 22:14:31 -0600 |
commit | f008f077e6978c99ba9548eda26ac29c073a46a8 (patch) | |
tree | aff23ac2f067fb17d30ca004500b1c4f18dfcc6a /src/volume-control.vala | |
parent | cdc14fd12e145a775f7f103125f4624947ac4d95 (diff) | |
download | ayatana-indicator-sound-f008f077e6978c99ba9548eda26ac29c073a46a8.tar.gz ayatana-indicator-sound-f008f077e6978c99ba9548eda26ac29c073a46a8.tar.bz2 ayatana-indicator-sound-f008f077e6978c99ba9548eda26ac29c073a46a8.zip |
remove 'is-playing' property from volume-warning
Diffstat (limited to 'src/volume-control.vala')
-rw-r--r-- | src/volume-control.vala | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/volume-control.vala b/src/volume-control.vala index d35708f..f1c74a0 100644 --- a/src/volume-control.vala +++ b/src/volume-control.vala @@ -56,7 +56,7 @@ public abstract class VolumeControl : Object public virtual bool active_mic { get { return false; } set { } } public virtual bool high_volume { get { return false; } protected set { } } public virtual bool mute { get { return false; } } - public virtual bool is_playing { get { return false; } } + public bool is_playing { get; protected set; default = false; } public virtual VolumeControl.ActiveOutput active_output { get { return VolumeControl.ActiveOutput.SPEAKERS; } } private Volume _volume; private double _pre_clamp_volume; |