1
mirror of https://github.com/monero-project/monero-gui synced 2024-12-22 03:15:52 +01:00

Merge pull request #2080

7f1fa6b Transfer: warn if description is a valid PID (selsta)
This commit is contained in:
luigi1111 2019-04-23 14:01:44 -05:00
commit 4926ee790b
No known key found for this signature in database
GPG Key ID: F4ACA0183641E010

View File

@ -355,9 +355,19 @@ Rectangle {
placeholderText: qsTr("Saved to local wallet history") + translationManager.emptyString
Layout.fillWidth: true
visible: descriptionCheckbox.checked
onTextChanged: {
paymentIdWarningBox.visible = walletManager.paymentIdValid(text) && !persistentSettings.showPid
}
}
}
MoneroComponents.WarningBox {
// @TODO: remove after pid removal hardfork
id: paymentIdWarningBox
text: qsTr("You can enable transfers with payment ID on the settings page.") + translationManager.emptyString;
visible: false
}
MoneroComponents.WarningBox {
id: sendButtonWarningBox
text: root.sendButtonWarning