Skip to content

Commit 932622e

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

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-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: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,15 @@ Page {
1818

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

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

0 commit comments

Comments
 (0)