refactor: reduce maxLines for improved text display in PlayerQueuePanel

This commit is contained in:
2026-04-25 22:45:36 +02:00
parent 1b8300ee1d
commit 9906d473c5

View File

@@ -145,7 +145,7 @@ private fun QueueRow(
color = scheme.onSurface, color = scheme.onSurface,
style = MaterialTheme.typography.bodyMedium, style = MaterialTheme.typography.bodyMedium,
fontWeight = if (isCurrent) FontWeight.Bold else FontWeight.Medium, fontWeight = if (isCurrent) FontWeight.Bold else FontWeight.Medium,
maxLines = 2, maxLines = 1,
overflow = TextOverflow.Ellipsis overflow = TextOverflow.Ellipsis
) )
if (subtitle != null) { if (subtitle != null) {