mirror of
https://github.com/monero-project/monero-gui
synced 2024-12-29 23:26:24 +01:00
string.startsWith() is not available in Qt versions lower than 5.8. Replace with string.indexOf()
This commit is contained in:
parent
e650818016
commit
b466f9fe96
@ -453,7 +453,7 @@ Rectangle {
|
||||
fontBold: true
|
||||
inlineIcon: true
|
||||
onTextChanged: {
|
||||
if (amountToReceiveLine.text.startsWith('.')) {
|
||||
if(amountToReceiveLine.text.indexOf('.') === 0){
|
||||
amountToReceiveLine.text = '0' + amountToReceiveLine.text;
|
||||
}
|
||||
}
|
||||
|
@ -145,7 +145,7 @@ Rectangle {
|
||||
inlineButtonText: qsTr("All") + translationManager.emptyString
|
||||
inlineButton.onClicked: amountLine.text = "(all)"
|
||||
onTextChanged: {
|
||||
if (amountLine.text.startsWith('.')) {
|
||||
if(amountLine.text.indexOf('.') === 0){
|
||||
amountLine.text = '0' + amountLine.text;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user