mirror of
https://github.com/monero-project/monero-gui.git
synced 2024-11-17 08:17:59 +00:00
QML: fix more warnings
This commit is contained in:
parent
a65222d057
commit
afe2b14430
3 changed files with 6 additions and 6 deletions
|
@ -209,13 +209,13 @@ Rectangle {
|
|||
clip: true
|
||||
|
||||
ScrollBar.vertical: ScrollBar {
|
||||
parent: mainFlickable.parent
|
||||
parent: root
|
||||
anchors.left: parent.right
|
||||
anchors.leftMargin: 3
|
||||
anchors.leftMargin: -14 // 10 margin + 4 scrollbar width
|
||||
anchors.top: parent.top
|
||||
anchors.topMargin: 4
|
||||
anchors.topMargin: persistentSettings.customDecorations ? 60 : 10
|
||||
anchors.bottom: parent.bottom
|
||||
anchors.bottomMargin: persistentSettings.customDecorations ? 4 : 0
|
||||
anchors.bottomMargin: persistentSettings.customDecorations ? 15 : 10
|
||||
}
|
||||
|
||||
onFlickingChanged: {
|
||||
|
|
|
@ -145,7 +145,7 @@ Rectangle {
|
|||
ListView {
|
||||
id: addressBookListView
|
||||
Layout.fillWidth: true
|
||||
anchors.fill: parent
|
||||
Layout.fillHeight: true
|
||||
clip: true
|
||||
boundsBehavior: ListView.StopAtBounds
|
||||
interactive: false
|
||||
|
|
|
@ -627,7 +627,7 @@ Item {
|
|||
in_txpool = true;
|
||||
} else {
|
||||
if (blockchainHeight == null)
|
||||
blockchainHeight = appWindow.currentWallet.blockChainHeight()
|
||||
blockchainHeight = walletManager.blockchainHeight()
|
||||
confirmations = blockchainHeight - blockHeight - 1
|
||||
displayAmount = model.data(idx, TransactionHistoryModel.TransactionDisplayAmountRole);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue