mirror of
https://github.com/monero-project/monero-gui.git
synced 2025-03-25 16:49:11 +00:00
Merge pull request #187
8214948
MiddlePanel: fix null pointer dereference for history model (moneromooo.monero)
This commit is contained in:
commit
d5fc4afc43
1 changed files with 1 additions and 1 deletions
|
@ -106,7 +106,7 @@ Rectangle {
|
||||||
}, State {
|
}, State {
|
||||||
name: "History"
|
name: "History"
|
||||||
PropertyChanges { target: root; currentView: historyView }
|
PropertyChanges { target: root; currentView: historyView }
|
||||||
PropertyChanges { target: historyView; model: appWindow.currentWallet.historyModel }
|
PropertyChanges { target: historyView; model: appWindow.currentWallet ? appWindow.currentWallet.historyModel : null }
|
||||||
}, State {
|
}, State {
|
||||||
name: "Transfer"
|
name: "Transfer"
|
||||||
PropertyChanges { target: root; currentView: transferView }
|
PropertyChanges { target: root; currentView: transferView }
|
||||||
|
|
Loading…
Reference in a new issue