fix: Show full album name when displaying details (#508)

This commit is contained in:
Jaime García
2026-03-20 05:32:50 +01:00
committed by GitHub
parent 8db6797eaa
commit 4a3d2305c0

View File

@@ -261,8 +261,10 @@ public class AlbumPageFragment extends Fragment implements ClickCallback {
bind.albumOtherInfoButton.setOnClickListener(v -> {
if (bind.albumDetailView.getVisibility() == View.GONE) {
bind.albumDetailView.setVisibility(View.VISIBLE);
bind.albumNameLabel.setMaxLines(Integer.MAX_VALUE);
} else if (bind.albumDetailView.getVisibility() == View.VISIBLE) {
bind.albumDetailView.setVisibility(View.GONE);
bind.albumNameLabel.setMaxLines(2);
}
});