Skip to content

Commit df44897

Browse files
committed
qml: add page title to peers page & update description
1 parent 716027c commit df44897

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
@@ -182,6 +182,11 @@ Item {
182182
peerTableModel.stopAutoRefresh();
183183
}
184184
}
185+
navMiddleDetail: Header {
186+
headerBold: true
187+
headerSize: 18
188+
header: qsTr("Peers")
189+
}
185190
}
186191
}
187192
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)