Skip to content

Commit 01b3909

Browse files
committed
qml: use NetworkIndicator, change layout of NodeRunner to accommodate
1 parent 0e01340 commit 01b3909

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

src/qml/components/BlockClock.qml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ import "../controls"
1313
Item {
1414
id: root
1515

16-
Layout.alignment: Qt.AlignCenter
1716
implicitWidth: 200
1817
implicitHeight: 200
1918

src/qml/pages/node/NodeRunner.qml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,14 @@ Page {
1818

1919
Component.onCompleted: nodeModel.startNodeInitializionThread();
2020

21-
BlockClock {
21+
ColumnLayout {
22+
spacing: 30
2223
anchors.centerIn: parent
24+
BlockClock {
25+
Layout.alignment: Qt.AlignCenter
26+
}
27+
NetworkIndicator {
28+
Layout.alignment: Qt.AlignCenter
29+
}
2330
}
2431
}

0 commit comments

Comments
 (0)