aboutsummaryrefslogtreecommitdiff
path: root/wizard/WizardCreateWallet.qml
diff options
context:
space:
mode:
authorIlya Kitaev <mbg033@gmail.com>2016-08-19 14:44:44 +0300
committerIlya Kitaev <mbg033@gmail.com>2016-08-19 14:44:44 +0300
commit8d93f01db434ffd873e095d55abeeae7d8021f6f (patch)
tree4ff1e7b9e902602ad7651d18d948fd3d596f2836 /wizard/WizardCreateWallet.qml
parentd3234bb91564ee8327b111e0acf2a83153929c25 (diff)
downloadmonzero-gui-8d93f01db434ffd873e095d55abeeae7d8021f6f.tar.gz
monzero-gui-8d93f01db434ffd873e095d55abeeae7d8021f6f.tar.xz
monzero-gui-8d93f01db434ffd873e095d55abeeae7d8021f6f.zip
WalletManager::openWalletAsync integrating with UI
Diffstat (limited to 'wizard/WizardCreateWallet.qml')
-rw-r--r--wizard/WizardCreateWallet.qml3
1 files changed, 2 insertions, 1 deletions
diff --git a/wizard/WizardCreateWallet.qml b/wizard/WizardCreateWallet.qml
index 771a13ec..43b8158f 100644
--- a/wizard/WizardCreateWallet.qml
+++ b/wizard/WizardCreateWallet.qml
@@ -29,6 +29,7 @@
import QtQuick 2.2
import moneroComponents 1.0
import QtQuick.Dialogs 1.2
+import 'utils.js' as Utils
Item {
opacity: 0
@@ -54,7 +55,7 @@ Item {
}
function checkNextButton() {
- var wordsArray = cleanWordsInput(uiItem.wordsTextItem.memoText).split(" ");
+ var wordsArray = Utils.lineBreaksToSpaces(uiItem.wordsTextItem.memoText).split(" ");
wizard.nextButton.enabled = wordsArray.length === 25;
}