Clean up speed labels

This commit is contained in:
grakovne
2025-04-06 20:08:24 +02:00
parent 62f9e31929
commit 26ad091c32

View File

@@ -92,7 +92,7 @@ fun PlaybackSpeedComposable(
contentPadding = PaddingValues(0.dp),
) {
Text(
text = String.format(Locale.US, "%.2f", value),
text = String.format(Locale.US, "%.1f", value),
style = if (selectedPlaybackSpeed == value) {
typography.labelMedium.copy(fontWeight = FontWeight.Bold)
} else typography.labelMedium,