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 wizard_data['wallet_name'] = wallet_name.text
} }
GridLayout { ColumnLayout {
columns: 1 width: parent.width
Label { text: qsTr('Wallet name') }
Label {
text: qsTr('Wallet name')
}
TextField { TextField {
id: wallet_name id: wallet_name
Layout.fillWidth: true
focus: true focus: true
text: Daemon.suggestWalletName() text: Daemon.suggestWalletName()
inputMethodHints: Qt.ImhNoPredictiveText inputMethodHints: Qt.ImhNoPredictiveText