mirror of
https://github.com/monero-project/monero-gui.git
synced 2026-04-01 22:57:25 -04:00
Merge pull request #1981
3f0241a Revert 'Dont show message on simple mode disconnect/reconnect' (selsta)
This commit is contained in:
2
main.qml
2
main.qml
@@ -1800,7 +1800,7 @@ ApplicationWindow {
|
|||||||
appWindow.disconnectedEpoch = 0;
|
appWindow.disconnectedEpoch = 0;
|
||||||
return;
|
return;
|
||||||
}, function(){
|
}, 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(){
|
wizardController.fetchRemoteNodes(function(){
|
||||||
wizardStateView.state = "wizardCreateWallet4";
|
wizardStateView.state = "wizardCreateWallet4";
|
||||||
}, function(){
|
}, 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";
|
wizardStateView.state = "wizardCreateWallet4";
|
||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
|
|||||||
@@ -198,7 +198,7 @@ Rectangle {
|
|||||||
wizardController.fetchRemoteNodes(function(){
|
wizardController.fetchRemoteNodes(function(){
|
||||||
wizardController.openWalletFile(moneroAccountsDir + "/" + fileName + "/" + fileName + ".keys");
|
wizardController.openWalletFile(moneroAccountsDir + "/" + fileName + "/" + fileName + ".keys");
|
||||||
}, function(){
|
}, 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");
|
wizardController.openWalletFile(moneroAccountsDir + "/" + fileName + "/" + fileName + ".keys");
|
||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
|
|||||||
@@ -74,7 +74,7 @@ Rectangle {
|
|||||||
wizardController.fetchRemoteNodes(function(){
|
wizardController.fetchRemoteNodes(function(){
|
||||||
wizardStateView.state = "wizardRestoreWallet4";
|
wizardStateView.state = "wizardRestoreWallet4";
|
||||||
}, function(){
|
}, 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";
|
wizardStateView.state = "wizardRestoreWallet4";
|
||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
|
|||||||
Reference in New Issue
Block a user