mirror of
https://github.com/mihonapp/mihon.git
synced 2025-07-08 00:44:30 +02:00
Fix off by one error in SliderItem
This commit is contained in:
@ -202,7 +202,7 @@ fun SliderItem(
|
||||
},
|
||||
modifier = Modifier.weight(1.5f),
|
||||
valueRange = min.toFloat()..max.toFloat(),
|
||||
steps = max - min,
|
||||
steps = max - min-1,
|
||||
)
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user