diff options
-rw-r--r-- | debian/changelog | 10 | ||||
-rw-r--r-- | src/sound-menu.vala | 1 |
2 files changed, 10 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog index a545145..08f1354 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,13 @@ +indicator-sound (12.10.2+16.04.20160120-0ubuntu1) xenial; urgency=medium + + [ Xavi Garcia Mena ] + * Fixing the playback controls when we have the playlist as the last + item in the player section. As number of items was 3 when having the + playlist section we were not updating the player controls and the + next/previous buttons were not working at all. (LP: #1245495) + + -- Xavi Garcia <xavi.garcia.mena@canonical.com> Wed, 20 Jan 2016 17:31:39 +0000 + indicator-sound (12.10.2+16.04.20160113.1-0ubuntu1) xenial; urgency=medium [ Charles Kerr ] diff --git a/src/sound-menu.vala b/src/sound-menu.vala index d100be1..896b7d2 100644 --- a/src/sound-menu.vala +++ b/src/sound-menu.vala @@ -379,7 +379,6 @@ public class SoundMenu: Object player_section.insert_item (PlayerSectionPosistion.PLAYER_CONTROLS, playback_item); } else { if (play_control_index != -1 && number_of_running_players >= 1) { - warning("REMOVING SECTION number of running players: %d", number_of_running_players); // remove both, playlist and play controls player_section.remove (PlayerSectionPosistion.PLAYLIST); player_section.remove (PlayerSectionPosistion.PLAYER_CONTROLS); |