diff options
| author | rating89us <45968869+rating89us@users.noreply.github.com> | 2021-06-26 21:25:19 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-06-26 21:25:19 +0200 |
| commit | 2db8f77a0a960445af8a5f37d7278b27d1354347 (patch) | |
| tree | 0aaac7a865abb806db88d3b2c0e0f2b580b42e95 | |
| parent | b58bff39a04df3eefa016e283af6be73f58a9e18 (diff) | |
| download | monzero-gui-2db8f77a0a960445af8a5f37d7278b27d1354347.tar.gz monzero-gui-2db8f77a0a960445af8a5f37d7278b27d1354347.tar.xz monzero-gui-2db8f77a0a960445af8a5f37d7278b27d1354347.zip | |
Transfer: UI changes to description field (use LineEdit, decrease font size, new placeholder)
| -rw-r--r-- | pages/Transfer.qml | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/pages/Transfer.qml b/pages/Transfer.qml index 156d4e1e..e1dfe06f 100644 --- a/pages/Transfer.qml +++ b/pages/Transfer.qml @@ -789,9 +789,11 @@ Rectangle { } } - LineEditMulti { + LineEdit { 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 visible: descriptionCheckbox.checked } |
