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:
parent
35d3e52684
commit
178dd04286
3 changed files with 8 additions and 0 deletions
|
|
@ -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+
|
||||
|
|
|
|||
|
|
@ -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();
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -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() {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue