mirror of
https://github.com/monero-project/monero-gui
synced 2024-11-16 14:55:33 +01:00
Merge pull request #2416
582267a
main: apply WalletMode check on start (xiphon)
This commit is contained in:
commit
290582d428
9
main.qml
9
main.qml
@ -1271,6 +1271,9 @@ ApplicationWindow {
|
||||
Component.onCompleted: {
|
||||
x = (Screen.width - width) / 2
|
||||
y = (Screen.height - maxWindowHeight) / 2
|
||||
|
||||
applyWalletMode(persistentSettings.walletMode);
|
||||
|
||||
//
|
||||
walletManager.walletOpened.connect(onWalletOpened);
|
||||
walletManager.deviceButtonRequest.connect(onDeviceButtonRequest);
|
||||
@ -2054,6 +2057,10 @@ ApplicationWindow {
|
||||
appWindow.disconnectedEpoch = 0;
|
||||
appWindow.walletMode = mode;
|
||||
persistentSettings.walletMode = mode;
|
||||
applyWalletMode(mode);
|
||||
}
|
||||
|
||||
function applyWalletMode(mode){
|
||||
if (mode < 2) {
|
||||
persistentSettings.useRemoteNode = false;
|
||||
persistentSettings.bootstrapNodeAddress = "auto";
|
||||
@ -2062,7 +2069,7 @@ ApplicationWindow {
|
||||
middlePanel.settingsView.settingsStateViewState = "Wallet"
|
||||
}
|
||||
}
|
||||
console.log("walletMode changed: " + (mode === 0 ? "simple": mode === 1 ? "simple (bootstrap)" : "Advanced"));
|
||||
console.log("walletMode: " + (mode === 0 ? "simple": mode === 1 ? "simple (bootstrap)" : "Advanced"));
|
||||
}
|
||||
|
||||
// Daemon console
|
||||
|
Loading…
Reference in New Issue
Block a user