1
0

qml: wallet name size in wizard

This commit is contained in:
Sander van Grieken
2024-10-07 14:52:48 +02:00
parent f3a4bb4b56
commit 70ebe4fc2f

View File

@@ -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