android: fix track color in tone volume

This commit is contained in:
Kavish Devar
2025-09-19 18:08:31 +05:30
parent 032b94e3ae
commit 3699ee6bee

View File

@@ -158,7 +158,7 @@ fun ToneVolumeSlider() {
)
Box(
modifier = Modifier
.fillMaxWidth(sliderValue.floatValue / 100)
.fillMaxWidth(sliderValue.floatValue / 125)
.height(4.dp)
.background(activeTrackColor, RoundedCornerShape(4.dp))
)