Skip to content

Commit 5c5a102

Browse files
committed
Disabled lines spacing customization option
1 parent f5ee173 commit 5c5a102

File tree

1 file changed

+10
-9
lines changed

1 file changed

+10
-9
lines changed

src/main/kotlin/com/jetpackduba/gitnuro/ui/dialogs/settings/SettingsDialog.kt

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -469,15 +469,16 @@ private fun Appearance(settingsViewModel: SettingsViewModel) {
469469
)
470470
}
471471

472-
SettingDropDown(
473-
title = "Lists spacing",
474-
subtitle = "Spacing around lists items",
475-
dropDownOptions = linesHeightTypesList,
476-
currentOption = linesHeightTypesList.first { it.value == currentLinesHeightType },
477-
onOptionSelected = { dropDown ->
478-
settingsViewModel.linesHeightType = dropDown.value
479-
}
480-
)
472+
// TODO Uncomment this once UI/UX has been implemented properly
473+
// SettingDropDown(
474+
// title = "Lists spacing (Beta)",
475+
// subtitle = "Spacing around lists items",
476+
// dropDownOptions = linesHeightTypesList,
477+
// currentOption = linesHeightTypesList.first { it.value == currentLinesHeightType },
478+
// onOptionSelected = { dropDown ->
479+
// settingsViewModel.linesHeightType = dropDown.value
480+
// }
481+
// )
481482

482483
val density = LocalDensity.current.density
483484
var options by remember {

0 commit comments

Comments
 (0)