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