mirror of
https://github.com/monero-project/monero-gui.git
synced 2024-11-16 15:58:11 +00:00
main: omit onWalletRefresh call with uninitialized currentWallet
This commit is contained in:
parent
6c2c17ada1
commit
f75aa22b26
1 changed files with 3 additions and 1 deletions
4
main.qml
4
main.qml
|
@ -2035,7 +2035,9 @@ ApplicationWindow {
|
|||
// some fields need an extra nudge when changing languages
|
||||
function resetLanguageFields(){
|
||||
clearMoneroCardLabelText()
|
||||
onWalletRefresh()
|
||||
if (currentWallet) {
|
||||
onWalletRefresh();
|
||||
}
|
||||
}
|
||||
|
||||
function userActivity() {
|
||||
|
|
Loading…
Reference in a new issue