Skip to content

Commit

Permalink
Fix setting onclick
Browse files Browse the repository at this point in the history
  • Loading branch information
Rawa committed Nov 21, 2023
1 parent 6cfb396 commit c9b435b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -503,7 +503,8 @@ fun VpnSettingsScreen(
Spacer(modifier = Modifier.height(Dimens.cellLabelVerticalPadding))
InformationComposeCell(
title = stringResource(R.string.obfuscation_title),
onInfoClicked = navigateToObfuscationInfo
onInfoClicked = navigateToObfuscationInfo,
onCellClicked = navigateToObfuscationInfo
)
}
itemWithDivider {
Expand All @@ -517,7 +518,7 @@ fun VpnSettingsScreen(
SelectableCell(
title = stringResource(id = R.string.obfuscation_on_udp_over_tcp),
isSelected = uiState.selectedObfuscation == SelectedObfuscation.Udp2Tcp,
onCellClicked = navigateUdp2TcpInfo
onCellClicked = { onSelectObfuscationSetting(SelectedObfuscation.Udp2Tcp) }
)
}
itemWithDivider {
Expand Down
2 changes: 1 addition & 1 deletion android/buildSrc/src/main/kotlin/Versions.kt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ object Versions {
const val jvmTarget = "17"
const val konsist = "0.13.0"
const val kotlin = "1.9.20"
const val kotlinCompilerExtensionVersion = "1.5.3"
const val kotlinCompilerExtensionVersion = "1.5.4"
const val kotlinx = "1.7.3"
const val leakCanary = "2.12"
const val mockk = "1.13.8"
Expand Down

0 comments on commit c9b435b

Please sign in to comment.