Skip to content

Commit

Permalink
qml: use NetworkIndicator, change layout of NodeRunner to accommodate
Browse files Browse the repository at this point in the history
  • Loading branch information
jarolrod committed Feb 9, 2023
1 parent 101f10c commit dd76b6e
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
1 change: 0 additions & 1 deletion src/qml/components/BlockClock.qml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ import "../controls"
Item {
id: root

Layout.alignment: Qt.AlignCenter
implicitWidth: 200
implicitHeight: 200

Expand Down
10 changes: 9 additions & 1 deletion src/qml/pages/node/NodeRunner.qml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,15 @@ Page {

Component.onCompleted: nodeModel.startNodeInitializionThread();

BlockClock {
ColumnLayout {
spacing: 30
anchors.centerIn: parent
BlockClock {
id: blockClock
Layout.alignment: Qt.AlignCenter
}
NetworkIndicator {
Layout.alignment: Qt.AlignCenter
}
}
}

0 comments on commit dd76b6e

Please sign in to comment.