aboutsummaryrefslogtreecommitdiff
path: root/wizard/WizardController.qml
diff options
context:
space:
mode:
authorselsta <selsta@sent.at>2019-08-16 21:19:58 +0200
committerselsta <selsta@sent.at>2019-08-17 01:05:22 +0200
commit40bdf692d14feae27485458b14b1f80df66ddc18 (patch)
tree0279e45ed9b98175c9eae719514271e98fce61bc /wizard/WizardController.qml
parent562c46660acda12c2818b9edaffd6c3f841b2113 (diff)
downloadmonzero-gui-40bdf692d14feae27485458b14b1f80df66ddc18.tar.gz
monzero-gui-40bdf692d14feae27485458b14b1f80df66ddc18.tar.xz
monzero-gui-40bdf692d14feae27485458b14b1f80df66ddc18.zip
Ledger: improve hw wallet splash screen
Diffstat (limited to 'wizard/WizardController.qml')
-rw-r--r--wizard/WizardController.qml4
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() {