mirror of
https://git.mihon.tech/mihonapp/mihon
synced 2024-11-21 20:55:41 +03:00
Fix settings SliderItem steps count (#1356)
This commit is contained in:
parent
c153ac01f5
commit
2ba7ed3280
1 changed files with 1 additions and 1 deletions
|
@ -202,7 +202,7 @@ fun SliderItem(
|
|||
},
|
||||
modifier = Modifier.weight(1.5f),
|
||||
valueRange = min.toFloat()..max.toFloat(),
|
||||
steps = max - min,
|
||||
steps = max - min - 1,
|
||||
)
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue