mirror of
https://github.com/awfixers-stuff/OwnDroid.git
synced 2026-03-23 19:15:58 +00:00
[Fix] Fix string quotations in PasswordHistoryLength
The headline text and the description in function PasswordHisoryLength refers to pwd_timeout_* instead of pwd_history_*. Fix them back to pwd_history & pwd_history_desc.
This commit is contained in:
@@ -449,13 +449,13 @@ private fun PasswordHistoryLength(){
|
||||
var ableToApply by remember{ mutableStateOf(inputContent!="") }
|
||||
Column(modifier = Modifier.fillMaxSize().padding(horizontal = 8.dp).verticalScroll(rememberScrollState())){
|
||||
Spacer(Modifier.padding(vertical = 10.dp))
|
||||
Text(text = stringResource(R.string.pwd_timeout), style = typography.headlineLarge)
|
||||
Text(text = stringResource(R.string.pwd_history), style = typography.headlineLarge)
|
||||
Spacer(Modifier.padding(vertical = 5.dp))
|
||||
Text(text= stringResource(R.string.pwd_timeout_desc))
|
||||
Text(text= stringResource(R.string.pwd_history_desc))
|
||||
Spacer(Modifier.padding(vertical = 5.dp))
|
||||
OutlinedTextField(
|
||||
value = inputContent,
|
||||
label = { Text(stringResource(R.string.time_unit_ms))},
|
||||
label = { Text(stringResource(R.string.length))},
|
||||
onValueChange = {
|
||||
inputContent = it
|
||||
ableToApply = inputContent!=""
|
||||
|
||||
Reference in New Issue
Block a user