fix: grid size slider (#9542)

This commit is contained in:
Artemis-CtrlAltDel 2023-05-27 03:41:22 +01:00 committed by GitHub
parent e3b2720924
commit 9c07451d95
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -220,7 +220,9 @@ private fun ColumnScope.DisplayPage(
}
val columns by columnPreference.changes().collectAsState(initial = 0)
Column {
Column(
Modifier.weight(.5f),
) {
Text(
stringResource(id = R.string.pref_library_columns),
style = MaterialTheme.typography.bodyMedium,
@ -235,7 +237,7 @@ private fun ColumnScope.DisplayPage(
Slider(
value = columns.toFloat(),
onValueChange = { columnPreference.set(it.toInt()) },
modifier = Modifier.weight(1f),
modifier = Modifier.weight(1.5f),
valueRange = 0f..10f,
steps = 10,
)