We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 67c0ee9 commit a0dd30aCopy full SHA for a0dd30a
app/src/main/java/com/concordium/wallet/uicore/DecimalTextWatcher.kt
@@ -25,6 +25,12 @@ class DecimalTextWatcher(val maxNumberOfDecimals: Int = 1) : TextWatcher {
25
26
override fun afterTextChanged(editable: Editable) {
27
var str = editable.toString()
28
+
29
+ // Remove thousands comma delimiter if inserted value is not an integer
30
+ if (str.contains(",") && str.contains(".")) {
31
+ str = str.replace(",", "")
32
+ }
33
34
// Replace the non decimal separator with the decimal separator
35
if ("." != "" + separator) {
36
if (str.indexOf(",") > -1) {
0 commit comments