mirror of
https://github.com/monero-project/monero-gui.git
synced 2025-01-23 19:15:56 +00:00
Merge pull request #70
bb25294
add hint texts to address and payment id fields (moneromooo.monero)
This commit is contained in:
commit
fc05a9cb45
3 changed files with 4 additions and 1 deletions
|
@ -111,6 +111,7 @@ Rectangle {
|
|||
anchors.leftMargin: 17
|
||||
anchors.rightMargin: 17
|
||||
anchors.topMargin: 5
|
||||
placeholderText: qsTr("16 or 64 hexadecimal characters") + translationManager.emptyString
|
||||
|
||||
|
||||
}
|
||||
|
|
|
@ -149,7 +149,7 @@ Rectangle {
|
|||
LineEdit {
|
||||
id: paymentIdLine
|
||||
fontSize: mainLayout.lineEditFontSize
|
||||
placeholderText: qsTr("Payment ID here") + translationManager.emptyString;
|
||||
placeholderText: qsTr("16 or 64 hexadecimal characters") + translationManager.emptyString;
|
||||
readOnly: false
|
||||
onTextChanged: updatePaymentId(paymentIdLine.text)
|
||||
|
||||
|
|
|
@ -189,6 +189,7 @@ Rectangle {
|
|||
anchors.leftMargin: 17
|
||||
anchors.rightMargin: 17
|
||||
anchors.topMargin: 5
|
||||
placeholderText: "4..."
|
||||
// validator: RegExpValidator { regExp: /[0-9A-Fa-f]{95}/g }
|
||||
}
|
||||
|
||||
|
@ -213,6 +214,7 @@ Rectangle {
|
|||
anchors.leftMargin: 17
|
||||
anchors.rightMargin: 17
|
||||
anchors.topMargin: 5
|
||||
placeholderText: qsTr("16 or 64 hexadecimal characters") + translationManager.emptyString
|
||||
// validator: DoubleValidator { top: 0.0 }
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue