From f2b8401811a09ab513dcd69d634d96fc08a94d09 Mon Sep 17 00:00:00 2001 From: Jaquee Date: Thu, 15 Dec 2016 00:58:03 +0100 Subject: [PATCH] Wizard: prevent linebreaks in wallet name --- wizard/WizardManageWalletUI.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wizard/WizardManageWalletUI.qml b/wizard/WizardManageWalletUI.qml index ad0f2e7e..f7d454f7 100644 --- a/wizard/WizardManageWalletUI.qml +++ b/wizard/WizardManageWalletUI.qml @@ -116,7 +116,7 @@ Item { width: 300 height: 62 - TextEdit { + TextInput { id: accountName anchors.fill: parent horizontalAlignment: TextInput.AlignHCenter @@ -127,7 +127,7 @@ Item { color: "#FF6C3C" focus: true text: defaultAccountName - + selectByMouse: true Keys.onReleased: { wizard.nextButton.enabled = (accountName.length > 0)