Skip to content

Commit

Permalink
fixes #243 fixes #244
Browse files Browse the repository at this point in the history
  • Loading branch information
yamin8000 committed Sep 10, 2024
1 parent 1ce4b11 commit 7274d5a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ internal fun <T> SettingsSelectorDialog(
modifier = Modifier
.fillMaxWidth()
.selectable(
selected = (item == currentItem),
selected = item == currentItem,
role = Role.RadioButton,
onClick = {
onOptionChanged(item)
Expand All @@ -160,7 +160,7 @@ internal fun <T> SettingsSelectorDialog(
),
content = {
RadioButton(
selected = (item == currentItem),
selected = item == currentItem,
onClick = null,
modifier = Modifier.padding(start = 8.dp)
)
Expand Down

0 comments on commit 7274d5a

Please sign in to comment.