Browse Source

qml: Addresses fills page

master
Sander van Grieken 3 years ago
parent
commit
c9b6917ab7
  1. 15
      electrum/gui/qml/components/Addresses.qml

15
electrum/gui/qml/components/Addresses.qml

@ -10,21 +10,17 @@ import "controls"
Pane { Pane {
id: rootItem id: rootItem
padding: 0 padding: 0
width: parent.width
ColumnLayout { ColumnLayout {
id: layout id: layout
width: parent.width anchors.fill: parent
height: parent.height
Item {
width: parent.width
Layout.fillHeight: true
ListView { ListView {
id: listview id: listview
width: parent.width
height: parent.height Layout.fillWidth: true
Layout.fillHeight: true
clip: true clip: true
model: Daemon.currentWallet.addressModel model: Daemon.currentWallet.addressModel
currentIndex: -1 currentIndex: -1
@ -132,7 +128,6 @@ Pane {
} }
} }
}
Component { Component {
id: sectionDelegate id: sectionDelegate

Loading…
Cancel
Save