Skip to content

Commit 478d59a

Browse files
committed
qml: add page title to peers page & update description
1 parent 1bdd8cf commit 478d59a

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

src/qml/pages/node/NodeSettings.qml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -162,6 +162,11 @@ Item {
162162
peerTableModel.stopAutoRefresh();
163163
}
164164
}
165+
navMiddleDetail: Header {
166+
headerBold: true
167+
headerSize: 18
168+
header: qsTr("Peers")
169+
}
165170
}
166171
}
167172
Component {

src/qml/pages/node/Peers.qml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ import "../../components"
1111
Page {
1212
background: null
1313
property alias navLeftDetail: navbar.leftDetail
14+
property alias navMiddleDetail: navbar.middleDetail
1415

1516
header: NavigationBar {
1617
id: navbar
@@ -32,8 +33,7 @@ Page {
3233
id: description
3334
Layout.fillWidth: true
3435
Layout.alignment: Qt.AlignHCenter
35-
text: qsTr("Peers are nodes you are connected to. You want to ensure that you are connected" +
36-
" to x, y and z, but not a, b, and c. Learn more.")
36+
text: qsTr("Peers are nodes you exchange data with.")
3737
font.pixelSize: 13
3838
color: Theme.color.neutral7
3939
}

0 commit comments

Comments
 (0)