aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--wizard/WizardManageWalletUI.qml8
1 files changed, 7 insertions, 1 deletions
diff --git a/wizard/WizardManageWalletUI.qml b/wizard/WizardManageWalletUI.qml
index 7104dc9f..ad0f2e7e 100644
--- a/wizard/WizardManageWalletUI.qml
+++ b/wizard/WizardManageWalletUI.qml
@@ -126,7 +126,13 @@ Item {
renderType: Text.NativeRendering
color: "#FF6C3C"
focus: true
- text: qsTr("My account name") + translationManager.emptyString
+ text: defaultAccountName
+
+
+ Keys.onReleased: {
+ wizard.nextButton.enabled = (accountName.length > 0)
+ }
+
}
Rectangle {