1
mirror of https://github.com/monero-project/monero-gui synced 2024-09-24 15:59:00 +02:00

Merge pull request #2665

c6c094b SettingsWallet: cleanup on wallet close (xiphon)
This commit is contained in:
luigi1111 2019-12-21 18:10:59 -05:00
commit 7afbcc9855
No known key found for this signature in database
GPG Key ID: F4ACA0183641E010
2 changed files with 4 additions and 6 deletions

View File

@ -1113,6 +1113,9 @@ ApplicationWindow {
rootItem.state = "wizard"
// reset balance
clearMoneroCardLabelText();
middlePanel.addressBookView.clearFields();
middlePanel.transferView.clearFields();
middlePanel.receiveView.clearFields();
// disable timers
userInActivityTimer.running = false;
simpleModeConnectionTimer.running = false;

View File

@ -54,12 +54,7 @@ Rectangle {
description: qsTr("Logs out of this wallet.") + translationManager.emptyString
title: qsTr("Close this wallet") + translationManager.emptyString
onClicked: {
middlePanel.addressBookView.clearFields();
middlePanel.transferView.clearFields();
middlePanel.receiveView.clearFields();
appWindow.showWizard();
}
onClicked: appWindow.showWizard()
}
MoneroComponents.SettingsListItem {