diff options
| author | Ilya Kitaev <mbg033@gmail.com> | 2016-08-19 14:44:44 +0300 |
|---|---|---|
| committer | Ilya Kitaev <mbg033@gmail.com> | 2016-08-19 14:44:44 +0300 |
| commit | 8d93f01db434ffd873e095d55abeeae7d8021f6f (patch) | |
| tree | 4ff1e7b9e902602ad7651d18d948fd3d596f2836 /wizard/WizardCreateWallet.qml | |
| parent | d3234bb91564ee8327b111e0acf2a83153929c25 (diff) | |
| download | monzero-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.qml | 3 |
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; } |
