mirror of
https://github.com/meshtastic/Meshtastic-Android.git
synced 2026-04-20 22:23:37 +00:00
limit short name length
This commit is contained in:
parent
9a71092b5f
commit
a10b55a5ed
1 changed files with 1 additions and 1 deletions
|
|
@ -83,7 +83,7 @@ fun PreferenceItemList(viewModel: UIViewModel) {
|
|||
|
||||
item {
|
||||
EditTextPreference(title = "Short name",
|
||||
value = userInput?.shortName ?: stringResource(id = R.string.unknown),
|
||||
value = userInput?.shortName?.take(4) ?: stringResource(id = R.string.unknown),
|
||||
enabled = connected && userInput?.shortName != null,
|
||||
keyboardOptions = KeyboardOptions.Default.copy(
|
||||
keyboardType = KeyboardType.Text, imeAction = ImeAction.Send
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue