Fixed a bug where the favorites playlist would not show the heart icon when initially added. Brought back the "Tag editor" label to the song tag editor.

This commit is contained in:
Karim Abou Zeid 2015-08-23 23:21:40 +02:00
commit 178dd04286
3 changed files with 8 additions and 0 deletions

View file

@ -31,8 +31,12 @@
<li><b>IMPROVEMENT:</b> Increased album cover quality when selecting the "ignore media store
covers" option.
</li>
<li><b>REVERT:</b> Brought back the "Tag editor" label to the song tag editor.
</li>
<li><b>FIX:</b> Last song in the song view not showing up.
</li>
<li><b>FIX:</b> Favorites playlist heart icon not showing up when initially added until restart.
</li>
<li><b>FIX:</b> Hopefully fixed the bug where the alternative progress slider always stayed
black on some devices. Please report if the bug is fixed at the <a
href="https://plus.google.com/u/0/communities/106227738496107108513">Google+

View file

@ -64,6 +64,7 @@ public class PlaylistAdapter extends AbsMultiSelectAdapter<PlaylistAdapter.ViewH
public void swapDataSet(ArrayList<Playlist> dataSet) {
this.dataSet = dataSet;
favoritePlaylistId = MusicUtil.getFavoritesPlaylist(activity).id;
notifyDataSetChanged();
}

View file

@ -44,6 +44,9 @@ public class SongTagEditorActivity extends AbsTagEditorActivity implements TextW
setNoImageMode();
setUpViews();
//noinspection ConstantConditions
getSupportActionBar().setTitle(R.string.action_tag_editor);
}
private void setUpViews() {