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 {
id: rootItem
padding: 0
width: parent.width
ColumnLayout {
id: layout
width: parent.width
height: parent.height
Item {
width: parent.width
Layout.fillHeight: true
anchors.fill: parent
ListView {
id: listview
width: parent.width
height: parent.height
Layout.fillWidth: true
Layout.fillHeight: true
clip: true
model: Daemon.currentWallet.addressModel
currentIndex: -1
@ -132,7 +128,6 @@ Pane {
}
}
}
Component {
id: sectionDelegate

Loading…
Cancel
Save