mirror of
https://github.com/monero-project/monero-gui.git
synced 2024-11-17 00:07:51 +00:00
Changed regex to support amount lines starting with a period, but block the transaction creation wizard
This commit is contained in:
parent
b585e7b498
commit
ccb1f36083
1 changed files with 7 additions and 2 deletions
|
@ -162,7 +162,7 @@ Rectangle {
|
|||
inlineButton.onClicked: amountLine.text = "(all)"
|
||||
|
||||
validator: RegExpValidator {
|
||||
regExp: /(\d{1,8})([.]\d{1,12})?$/
|
||||
regExp: /(.|)(\d{1,8})([.]\d{1,12})?$/
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -338,6 +338,11 @@ Rectangle {
|
|||
return false;
|
||||
}
|
||||
|
||||
// The amount does not start with a period (example: `.4`)
|
||||
if(amountLine.text.startsWith('.')){
|
||||
return false;
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
onClicked: {
|
||||
|
|
Loading…
Reference in a new issue