mirror of
https://github.com/monero-project/monero-gui.git
synced 2025-01-08 20:09:48 +00:00
Merge pull request #2504
f75aa22
main: omit onWalletRefresh call with uninitialized currentWallet (xiphon)
This commit is contained in:
commit
9ba1960207
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