diff options
| author | selsta <selsta@sent.at> | 2019-08-16 21:19:58 +0200 |
|---|---|---|
| committer | selsta <selsta@sent.at> | 2019-08-17 01:05:22 +0200 |
| commit | 40bdf692d14feae27485458b14b1f80df66ddc18 (patch) | |
| tree | 0279e45ed9b98175c9eae719514271e98fce61bc /wizard | |
| parent | 562c46660acda12c2818b9edaffd6c3f841b2113 (diff) | |
| download | monzero-gui-40bdf692d14feae27485458b14b1f80df66ddc18.tar.gz monzero-gui-40bdf692d14feae27485458b14b1f80df66ddc18.tar.xz monzero-gui-40bdf692d14feae27485458b14b1f80df66ddc18.zip | |
Ledger: improve hw wallet splash screen
Diffstat (limited to 'wizard')
| -rw-r--r-- | wizard/WizardController.qml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/wizard/WizardController.qml b/wizard/WizardController.qml index c62a327f..7d5b662f 100644 --- a/wizard/WizardController.qml +++ b/wizard/WizardController.qml @@ -448,7 +448,9 @@ Rectangle { } function creatingWalletDeviceSplash(){ - appWindow.showProcessingSplash(qsTr("Creating wallet from device...")); + var splashMsg = qsTr("Creating wallet from device..."); + splashMsg += wizardController.walletOptionsDeviceName === "Ledger" ? qsTr("\n\nPlease check your hardware wallet –\nyour input may be required.") : ""; + appWindow.showProcessingSplash(splashMsg); } function createWalletFromDevice() { |
