Merge pull request #3590

2db8f77 Transfer: UI changes to description field (use LineEdit, decrease font size, new placeholder) (rating89us)
This commit is contained in:
luigi1111 2021-07-06 11:48:27 -04:00
commit 5e076325cd
No known key found for this signature in database
GPG key ID: F4ACA0183641E010

View file

@ -789,9 +789,11 @@ Rectangle {
} }
} }
LineEditMulti { LineEdit {
id: descriptionLine id: descriptionLine
placeholderText: qsTr("Saved to local wallet history") + translationManager.emptyString placeholderFontSize: 16
fontSize: 16
placeholderText: qsTr("Saved to local wallet history") + " (" + qsTr("only visible to you") + ")" + translationManager.emptyString
Layout.fillWidth: true Layout.fillWidth: true
visible: descriptionCheckbox.checked visible: descriptionCheckbox.checked
} }