diff options
| author | plowsof <plowsof@protonmail.com> | 2026-06-25 01:10:09 +0200 |
|---|---|---|
| committer | selsta <selsta@sent.at> | 2026-06-25 01:16:33 +0200 |
| commit | 0d37ac676f18d3632ed061ea1c7011b104b7d513 (patch) | |
| tree | 08a1b35bc31aa367941a7a2fce8bcd12a4cef23e /components | |
| parent | 003e667576f38812e27cbb79125a0ba96036225d (diff) | |
| download | monzero-gui-0d37ac676f18d3632ed061ea1c7011b104b7d513.tar.gz monzero-gui-0d37ac676f18d3632ed061ea1c7011b104b7d513.tar.xz monzero-gui-0d37ac676f18d3632ed061ea1c7011b104b7d513.zip | |
Fix "Quick Layouts recursive rearrange" spam on startup
Diffstat (limited to 'components')
| -rw-r--r-- | components/RemoteNodeEdit.qml | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/components/RemoteNodeEdit.qml b/components/RemoteNodeEdit.qml index 7d68cd2c..e6ce47f2 100644 --- a/components/RemoteNodeEdit.qml +++ b/components/RemoteNodeEdit.qml @@ -84,7 +84,8 @@ GridLayout { MoneroComponents.LineEdit { id: daemonAddr - Layout.preferredWidth: root.width/3 + Layout.fillWidth: true + Layout.minimumWidth: 220 placeholderText: qsTr("Remote Node Hostname / IP") + translationManager.emptyString placeholderFontFamily: root.placeholderFontFamily placeholderFontBold: root.placeholderFontBold @@ -106,7 +107,8 @@ GridLayout { MoneroComponents.LineEdit { id: daemonPort - Layout.preferredWidth: root.width/3 + Layout.fillWidth: true + Layout.minimumWidth: 120 placeholderText: qsTr("Port") + translationManager.emptyString placeholderFontFamily: root.placeholderFontFamily placeholderFontBold: root.placeholderFontBold |
