diff options
author | Ken VanDine <ken.vandine@canonical.com> | 2011-03-23 12:39:45 -0400 |
---|---|---|
committer | Ken VanDine <ken.vandine@canonical.com> | 2011-03-23 12:39:45 -0400 |
commit | 8227400e2d44175c38165182140489adaf69dd7f (patch) | |
tree | 68ea206ec4f66c3da4f19006d168c3e205bd0eb1 /src/player-item.vala | |
parent | ab3d1a08d064b423b2e2a3702c3039947bbb810f (diff) | |
parent | f05dff9b5d6c5e921f3056c142068ea7f6f41486 (diff) | |
download | ayatana-indicator-sound-8227400e2d44175c38165182140489adaf69dd7f.tar.gz ayatana-indicator-sound-8227400e2d44175c38165182140489adaf69dd7f.tar.bz2 ayatana-indicator-sound-8227400e2d44175c38165182140489adaf69dd7f.zip |
* New upstream release.
- Media player should be automatically started up when play button is
pressed (LP: #714750)
- volume goes to zero when using some players like banshee or
rhythmbox (LP: #730925)
- handle banshee id change (LP: #737447)
- filter out video playlists (LP: #739273)
Diffstat (limited to 'src/player-item.vala')
-rw-r--r-- | src/player-item.vala | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/player-item.vala b/src/player-item.vala index 9d07bf7..f71b166 100644 --- a/src/player-item.vala +++ b/src/player-item.vala @@ -37,7 +37,7 @@ public class PlayerItem : Dbusmenu.Menuitem public void reset(HashSet<string> attrs){ foreach(string s in attrs){ - debug("attempting to set prop %s to EMPTY", s); + //debug("attempting to set prop %s to EMPTY", s); this.property_set_int(s, EMPTY); } } @@ -50,7 +50,7 @@ public class PlayerItem : Dbusmenu.Menuitem */ public void update(HashTable<string, Variant?> data, HashSet<string> attributes) { - debug("PlayerItem::update()"); + //debug("PlayerItem::update()"); if(data == null){ warning("PlayerItem::Update -> The hashtable was null - just leave it!"); return; |