mirror of
https://github.com/monero-project/monero-gui.git
synced 2024-11-17 16:28:14 +00:00
Merge pull request #2401
947e265
Transfer: warn on long Payment ID filled into description field (xiphon)
This commit is contained in:
commit
9207462676
1 changed files with 7 additions and 1 deletions
|
@ -56,7 +56,7 @@ Rectangle {
|
|||
property bool showAdvanced: false
|
||||
// @TODO: remove after pid removal hardfork
|
||||
property bool warningLongPidTransfer: false
|
||||
property bool warningLongPidDescription: false
|
||||
property bool warningLongPidDescription: descriptionLine.text.match(/^[0-9a-f]{64}$/i)
|
||||
|
||||
Clipboard { id: clipboard }
|
||||
|
||||
|
@ -331,6 +331,12 @@ Rectangle {
|
|||
}
|
||||
}
|
||||
|
||||
MoneroComponents.WarningBox {
|
||||
text: qsTr("Description field contents match long payment ID format. \
|
||||
Please don't paste long payment ID into description field, your funds might be lost.") + translationManager.emptyString;
|
||||
visible: warningLongPidDescription
|
||||
}
|
||||
|
||||
ColumnLayout {
|
||||
spacing: 15
|
||||
|
||||
|
|
Loading…
Reference in a new issue