aboutsummaryrefslogtreecommitdiff
path: root/components
diff options
context:
space:
mode:
authortobtoht <tob@featherwallet.org>2026-06-30 09:57:59 +0000
committertobtoht <tob@featherwallet.org>2026-06-30 09:57:59 +0000
commit8c8ddfc1eefb150de0dce6bf10f128a33bcba9e3 (patch)
tree073bf350df5729f1438cedc004349210f5d881f1 /components
parent7184a4409b7813a7a19269ec984e0767916ceb8e (diff)
parent0d37ac676f18d3632ed061ea1c7011b104b7d513 (diff)
downloadmonzero-gui-8c8ddfc1eefb150de0dce6bf10f128a33bcba9e3.tar.gz
monzero-gui-8c8ddfc1eefb150de0dce6bf10f128a33bcba9e3.tar.xz
monzero-gui-8c8ddfc1eefb150de0dce6bf10f128a33bcba9e3.zip
Merge pull request #4615
0d37ac6 Fix "Quick Layouts recursive rearrange" spam on startup (plowsof) ACKs: plowsof
Diffstat (limited to 'components')
-rw-r--r--components/RemoteNodeEdit.qml6
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