1
0

qml: fix initial focus wallet name in new wallet wizard

This commit is contained in:
Sander van Grieken
2022-07-12 14:01:04 +02:00
parent f83c944f0e
commit d0a9420c87
2 changed files with 2 additions and 1 deletions

View File

@@ -22,6 +22,6 @@ WizardComponent {
} }
Component.onCompleted: { Component.onCompleted: {
wallet_name.selectAll() wallet_name.forceActiveFocus()
} }
} }

View File

@@ -5,6 +5,7 @@ import QtQuick.Controls 2.1
Dialog { Dialog {
id: wizard id: wizard
modal: true modal: true
focus: true
width: parent.width width: parent.width
height: parent.height height: parent.height