Merge pull request #4078

a9b52f6 Sign/Verify: clear text fields on wallet close (plowsof)
This commit is contained in:
luigi1111
2022-12-01 23:49:50 -06:00
3 changed files with 17 additions and 0 deletions

View File

@@ -40,6 +40,7 @@ ColumnLayout {
spacing: 0
property int panelHeight: 900
property alias miningView: stateView.miningView
property alias signView: stateView.signView
property alias state: stateView.state
MoneroComponents.Navbar {
@@ -147,4 +148,9 @@ ColumnLayout {
}
}
}
function clearFields() {
signView.clearFields();
}
}