mirror of
https://github.com/monero-project/monero-gui.git
synced 2024-12-22 19:49:34 +00:00
Revert "Dont show message on simple mode disconnect/reconnect"
This reverts commit 632423da07
.
This commit is contained in:
parent
07df0f41bf
commit
3f0241a039
4 changed files with 4 additions and 4 deletions
2
main.qml
2
main.qml
|
@ -1796,7 +1796,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);
|
||||
});
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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 {
|
||||
|
|
|
@ -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 {
|
||||
|
|
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue