summaryrefslogtreecommitdiff
path: root/wallet/src/main/java/net/taler/wallet/compose/NumericInputField.kt
diff options
context:
space:
mode:
authorTorsten Grote <t@grobox.de>2023-10-25 10:27:27 -0300
committerTorsten Grote <t@grobox.de>2023-10-25 10:32:23 -0300
commit359608798ab35871570c174367adbb3ab4902a93 (patch)
tree5c303804effdacc3c6677ea39e326bd61a5f2c08 /wallet/src/main/java/net/taler/wallet/compose/NumericInputField.kt
parent07d7ca47881dc3857857ac45ced7a71446f0a964 (diff)
downloadtaler-android-359608798ab35871570c174367adbb3ab4902a93.tar.gz
taler-android-359608798ab35871570c174367adbb3ab4902a93.tar.bz2
taler-android-359608798ab35871570c174367adbb3ab4902a93.zip
[wallet] Make more TextFields singleLine
Diffstat (limited to 'wallet/src/main/java/net/taler/wallet/compose/NumericInputField.kt')
-rw-r--r--wallet/src/main/java/net/taler/wallet/compose/NumericInputField.kt1
1 files changed, 1 insertions, 0 deletions
diff --git a/wallet/src/main/java/net/taler/wallet/compose/NumericInputField.kt b/wallet/src/main/java/net/taler/wallet/compose/NumericInputField.kt
index 5911039..47401cf 100644
--- a/wallet/src/main/java/net/taler/wallet/compose/NumericInputField.kt
+++ b/wallet/src/main/java/net/taler/wallet/compose/NumericInputField.kt
@@ -39,6 +39,7 @@ fun NumericInputField(
OutlinedTextField(
modifier = modifier,
value = value.toString(),
+ singleLine = true,
readOnly = readOnly,
onValueChange = {
val dd = it.toLongOrNull() ?: 0