mirror of
https://github.com/monero-project/monero-gui
synced 2024-12-04 06:55:16 +01:00
commit
5b725a4f20
@ -57,7 +57,7 @@ Rectangle {
|
||||
var nfields = 0
|
||||
s += current_address;
|
||||
var amount = amountToReceiveLine.text.trim()
|
||||
if (amount !== "") {
|
||||
if (amount !== "" && amount.slice(-1) !== ".") {
|
||||
s += (nfields++ ? "&" : "?")
|
||||
s += "tx_amount=" + amount
|
||||
}
|
||||
@ -456,12 +456,8 @@ Rectangle {
|
||||
placeholderText: qsTr("Amount to receive") + translationManager.emptyString
|
||||
fontBold: true
|
||||
inlineIcon: true
|
||||
validator: DoubleValidator {
|
||||
bottom: 0.0
|
||||
top: 18446744.073709551615
|
||||
decimals: 12
|
||||
notation: DoubleValidator.StandardNotation
|
||||
locale: "C"
|
||||
validator: RegExpValidator {
|
||||
regExp: /(\d{1,8})([.]\d{1,12})?$/
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -193,12 +193,8 @@ Rectangle {
|
||||
inlineButtonText: qsTr("All") + translationManager.emptyString
|
||||
inlineButton.onClicked: amountLine.text = "(all)"
|
||||
|
||||
validator: DoubleValidator {
|
||||
bottom: 0.0
|
||||
top: 18446744.073709551615
|
||||
decimals: 12
|
||||
notation: DoubleValidator.StandardNotation
|
||||
locale: "C"
|
||||
validator: RegExpValidator {
|
||||
regExp: /(\d{1,8})([.]\d{1,12})?$/
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user