mirror of
https://github.com/Helium314/HeliBoard.git
synced 2025-04-21 22:59:10 +00:00
fix toolbar reorder dialog not closing
This commit is contained in:
parent
84b01a9133
commit
26a45d82f3
1 changed files with 2 additions and 2 deletions
|
@ -162,9 +162,9 @@ fun ToolbarKeyReorderDialog(
|
||||||
prefs.edit().putString(prefKey, value).apply()
|
prefs.edit().putString(prefKey, value).apply()
|
||||||
themeChanged = true
|
themeChanged = true
|
||||||
},
|
},
|
||||||
onDismissRequest = { onDismiss },
|
onDismissRequest = onDismiss,
|
||||||
items = items,
|
items = items,
|
||||||
title = { Text(title)},
|
title = { Text(title) },
|
||||||
displayItem = { item ->
|
displayItem = { item ->
|
||||||
var checked by remember { mutableStateOf(item.state) }
|
var checked by remember { mutableStateOf(item.state) }
|
||||||
Row(verticalAlignment = Alignment.CenterVertically) {
|
Row(verticalAlignment = Alignment.CenterVertically) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue