diff options
| author | rating89us <45968869+rating89us@users.noreply.github.com> | 2021-06-09 05:42:43 +0200 |
|---|---|---|
| committer | rating89us <rating89us@rating89us.com> | 2021-06-11 17:13:52 +0200 |
| commit | 52aef114fab755d2a58c19252cdc1bcbedd1c122 (patch) | |
| tree | 78c30b3caf180a68652b0cf914ec722104a26625 /components/RemoteNodeEdit.qml | |
| parent | 7c379e2cdaafc0cd618dbaab466625aa76c918bf (diff) | |
| download | monzero-gui-52aef114fab755d2a58c19252cdc1bcbedd1c122.tar.gz monzero-gui-52aef114fab755d2a58c19252cdc1bcbedd1c122.tar.xz monzero-gui-52aef114fab755d2a58c19252cdc1bcbedd1c122.zip | |
LineEdit: use ColumnLayout instead of Item (also used in LineEditMulti)
Diffstat (limited to 'components/RemoteNodeEdit.qml')
| -rw-r--r-- | components/RemoteNodeEdit.qml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/components/RemoteNodeEdit.qml b/components/RemoteNodeEdit.qml index 7b4b4773..255f6673 100644 --- a/components/RemoteNodeEdit.qml +++ b/components/RemoteNodeEdit.qml @@ -82,9 +82,9 @@ GridLayout { return addr + ":" + port; } - LineEdit { + MoneroComponents.LineEdit { id: daemonAddr - Layout.fillWidth: true + Layout.preferredWidth: root.width/3 placeholderText: qsTr("Remote Node Hostname / IP") + translationManager.emptyString placeholderFontFamily: root.placeholderFontFamily placeholderFontBold: root.placeholderFontBold @@ -104,9 +104,9 @@ GridLayout { text: initialHostPort[1] } - LineEdit { + MoneroComponents.LineEdit { id: daemonPort - Layout.fillWidth: true + Layout.preferredWidth: root.width/3 placeholderText: qsTr("Port") + translationManager.emptyString placeholderFontFamily: root.placeholderFontFamily placeholderFontBold: root.placeholderFontBold |
