From 70ebe4fc2fddbdb6cd30b6d066c23b31a342a63a Mon Sep 17 00:00:00 2001 From: Sander van Grieken Date: Mon, 7 Oct 2024 14:52:48 +0200 Subject: [PATCH] qml: wallet name size in wizard --- electrum/gui/qml/components/wizard/WCWalletName.qml | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/electrum/gui/qml/components/wizard/WCWalletName.qml b/electrum/gui/qml/components/wizard/WCWalletName.qml index 4a9cad5a7..7dc243db5 100644 --- a/electrum/gui/qml/components/wizard/WCWalletName.qml +++ b/electrum/gui/qml/components/wizard/WCWalletName.qml @@ -11,11 +11,16 @@ WizardComponent { wizard_data['wallet_name'] = wallet_name.text } - GridLayout { - columns: 1 - Label { text: qsTr('Wallet name') } + ColumnLayout { + width: parent.width + + Label { + text: qsTr('Wallet name') + } + TextField { id: wallet_name + Layout.fillWidth: true focus: true text: Daemon.suggestWalletName() inputMethodHints: Qt.ImhNoPredictiveText