Browse Source

qml: wallet name size in wizard

master
Sander van Grieken 1 year ago
parent
commit
70ebe4fc2f
No known key found for this signature in database
GPG Key ID: 9BCF8209EA402EBA
  1. 11
      electrum/gui/qml/components/wizard/WCWalletName.qml

11
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

Loading…
Cancel
Save