1
0

qml: reset position in history to top when loading another wallet

This commit is contained in:
Sander van Grieken
2023-02-23 21:26:56 +01:00
parent 9d425b5b23
commit e589d859ae

View File

@@ -143,4 +143,11 @@ Pane {
Daemon.currentWallet.historyModel.updateBlockchainHeight(height)
}
}
Connections {
target: Daemon
function onWalletLoaded() {
listview.positionViewAtBeginning()
}
}
}