File tree Expand file tree Collapse file tree 1 file changed +24
-0
lines changed Expand file tree Collapse file tree 1 file changed +24
-0
lines changed Original file line number Diff line number Diff line change @@ -41,6 +41,30 @@ Page {
41
41
model: peerListModelProxy
42
42
spacing: 15
43
43
44
+ footer: Loader {
45
+ anchors .centerIn : parent
46
+ height: 75
47
+ active: nodeModel .numOutboundPeers < nodeModel .maxNumOutboundPeers
48
+ visible: active
49
+ sourceComponent: RowLayout {
50
+ spacing: 20
51
+ PeersIndicator {
52
+ Layout .alignment : Qt .AlignHCenter
53
+ numOutboundPeers: nodeModel .numOutboundPeers
54
+ maxNumOutboundPeers: nodeModel .maxNumOutboundPeers
55
+ }
56
+ Text {
57
+ Layout .alignment : Qt .AlignHCenter
58
+ text: qsTr (" Looking for %1 more peer(s)" ).arg (
59
+ nodeModel .maxNumOutboundPeers - nodeModel .numOutboundPeers )
60
+ font .family : " Inter"
61
+ font .styleName : " Regular"
62
+ font .pixelSize : 15
63
+ color: Theme .color .neutral7
64
+ }
65
+ }
66
+ }
67
+
44
68
delegate: Item {
45
69
required property int nodeId;
46
70
required property string address;
You can’t perform that action at this time.
0 commit comments