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 /wizard | |
| 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 'wizard')
| -rw-r--r-- | wizard/WizardWalletInput.qml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/wizard/WizardWalletInput.qml b/wizard/WizardWalletInput.qml index 882145ab..da7a4aaa 100644 --- a/wizard/WizardWalletInput.qml +++ b/wizard/WizardWalletInput.qml @@ -71,7 +71,7 @@ GridLayout { ColumnLayout { MoneroComponents.LineEdit { id: walletName - Layout.preferredWidth: grid.width/5 + Layout.fillWidth: true function verify(){ if (walletName.text === "") { @@ -113,7 +113,7 @@ GridLayout { } RowLayout { - Layout.preferredWidth: grid.width/5 + Layout.fillWidth: true MoneroComponents.TextPlain { visible: errorMessageWalletName.text != "" @@ -147,7 +147,7 @@ GridLayout { MoneroComponents.LineEdit { id: walletLocation - Layout.preferredWidth: grid.width/3 + Layout.fillWidth: true function verify() { if (walletLocation.text == "") { @@ -200,7 +200,7 @@ GridLayout { } RowLayout { - Layout.preferredWidth: grid.width/3 + Layout.fillWidth: true MoneroComponents.TextPlain { visible: errorMessageWalletLocation.text != "" |
