mirror of
https://github.com/monero-project/monero-gui.git
synced 2024-12-23 03:59:38 +00:00
LineEditMulti: fix showingHeader and padding (empty label case)
This commit is contained in:
parent
bac833c1dd
commit
787234e838
1 changed files with 2 additions and 2 deletions
|
@ -78,7 +78,7 @@ ColumnLayout {
|
|||
property var onPaste: function(clipboardText) {
|
||||
item.text = clipboardText;
|
||||
}
|
||||
property bool showingHeader: true
|
||||
property bool showingHeader: labelText != "" || copyButton || pasteButton
|
||||
property var wrapMode: Text.NoWrap
|
||||
property alias addressValidation: input.addressValidation
|
||||
property string backgroundColor: "" // mock
|
||||
|
@ -150,7 +150,7 @@ ColumnLayout {
|
|||
readOnly: false
|
||||
addressValidation: false
|
||||
Layout.fillWidth: true
|
||||
topPadding: item.showingHeader ? 10 * scaleRatio : 0
|
||||
topPadding: 10 * scaleRatio
|
||||
bottomPadding: 10 * scaleRatio
|
||||
wrapMode: item.wrapMode
|
||||
fontSize: item.fontSize
|
||||
|
|
Loading…
Reference in a new issue