diff options
Diffstat (limited to 'src/github')
-rw-r--r-- | src/github/daneren2005/dsub/view/SongView.java | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/github/daneren2005/dsub/view/SongView.java b/src/github/daneren2005/dsub/view/SongView.java index 645a66c8..3e423877 100644 --- a/src/github/daneren2005/dsub/view/SongView.java +++ b/src/github/daneren2005/dsub/view/SongView.java @@ -118,6 +118,11 @@ public class SongView extends UpdateView implements Checkable { artist.append(")"); } } + + durationTextView.setText(Util.formatDuration(song.getDuration())); + } else { + findViewById(R.id.song_bottom).setVisibility(View.GONE); + statusTextView.setText(Util.formatDuration(song.getDuration())); } String title = song.getTitle(); @@ -128,7 +133,6 @@ public class SongView extends UpdateView implements Checkable { titleTextView.setText(title); artistTextView.setText(artist); - durationTextView.setText(Util.formatDuration(song.getDuration())); checkedTextView.setVisibility(checkable && !song.isVideo() ? View.VISIBLE : View.GONE); revision = -1; |