aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorluigi1111 <luigi1111w@gmail.com>2019-03-01 02:36:05 -0600
committerluigi1111 <luigi1111w@gmail.com>2019-03-01 02:36:05 -0600
commit5ce689972ecbb71057ea0f1814cf11e367f937dc (patch)
treefb6ce125b9ef0243871abfe70f306a8002d58194
parentf7ac041b4e21ad6c23f1d6c800b520e5f3512294 (diff)
parent3f0241a039182ddfd5559d79b9c31b9484ccb42e (diff)
downloadmonzero-gui-5ce689972ecbb71057ea0f1814cf11e367f937dc.tar.gz
monzero-gui-5ce689972ecbb71057ea0f1814cf11e367f937dc.tar.xz
monzero-gui-5ce689972ecbb71057ea0f1814cf11e367f937dc.zip
Merge pull request #1981
3f0241a Revert 'Dont show message on simple mode disconnect/reconnect' (selsta)
-rw-r--r--main.qml2
-rw-r--r--wizard/WizardCreateWallet2.qml2
-rw-r--r--wizard/WizardOpenWallet1.qml2
-rw-r--r--wizard/WizardRestoreWallet2.qml2
4 files changed, 4 insertions, 4 deletions
diff --git a/main.qml b/main.qml
index b3d0e528..b8545084 100644
--- a/main.qml
+++ b/main.qml
@@ -1800,7 +1800,7 @@ ApplicationWindow {
appWindow.disconnectedEpoch = 0;
return;
}, function(){
- console.log("Failed to fetch remote nodes from third-party server.");
+ appWindow.showStatusMessage(qsTr("Failed to fetch remote nodes from third-party server."), simpleModeConnectionTimer.interval / 1000);
});
}
}
diff --git a/wizard/WizardCreateWallet2.qml b/wizard/WizardCreateWallet2.qml
index 75f6e63d..6a3d3284 100644
--- a/wizard/WizardCreateWallet2.qml
+++ b/wizard/WizardCreateWallet2.qml
@@ -75,7 +75,7 @@ Rectangle {
wizardController.fetchRemoteNodes(function(){
wizardStateView.state = "wizardCreateWallet4";
}, function(){
- console.log("Failed to fetch remote nodes from third-party server.");
+ appWindow.showStatusMessage(qsTr("Failed to fetch remote nodes from third-party server."), 5);
wizardStateView.state = "wizardCreateWallet4";
});
} else {
diff --git a/wizard/WizardOpenWallet1.qml b/wizard/WizardOpenWallet1.qml
index baa800e2..8e3f7f52 100644
--- a/wizard/WizardOpenWallet1.qml
+++ b/wizard/WizardOpenWallet1.qml
@@ -198,7 +198,7 @@ Rectangle {
wizardController.fetchRemoteNodes(function(){
wizardController.openWalletFile(moneroAccountsDir + "/" + fileName + "/" + fileName + ".keys");
}, function(){
- console.log("Failed to fetch remote nodes from third-party server.");
+ appWindow.showStatusMessage(qsTr("Failed to fetch remote nodes from third-party server."), 5);
wizardController.openWalletFile(moneroAccountsDir + "/" + fileName + "/" + fileName + ".keys");
});
} else {
diff --git a/wizard/WizardRestoreWallet2.qml b/wizard/WizardRestoreWallet2.qml
index 017c1411..bf569cdf 100644
--- a/wizard/WizardRestoreWallet2.qml
+++ b/wizard/WizardRestoreWallet2.qml
@@ -74,7 +74,7 @@ Rectangle {
wizardController.fetchRemoteNodes(function(){
wizardStateView.state = "wizardRestoreWallet4";
}, function(){
- console.log("Failed to fetch remote nodes from third-party server.");
+ appWindow.showStatusMessage(qsTr("Failed to fetch remote nodes from third-party server."), 5);
wizardStateView.state = "wizardRestoreWallet4";
});
} else {