mirror of
https://github.com/monero-project/monero-gui.git
synced 2025-01-09 12:30:10 +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
|
// some fields need an extra nudge when changing languages
|
||||||
function resetLanguageFields(){
|
function resetLanguageFields(){
|
||||||
clearMoneroCardLabelText()
|
clearMoneroCardLabelText()
|
||||||
onWalletRefresh()
|
if (currentWallet) {
|
||||||
|
onWalletRefresh();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function userActivity() {
|
function userActivity() {
|
||||||
|
|
Loading…
Reference in a new issue