summaryrefslogtreecommitdiffstats
path: root/startupscreen/MainView.qml
diff options
context:
space:
mode:
Diffstat (limited to 'startupscreen/MainView.qml')
-rw-r--r--startupscreen/MainView.qml11
1 files changed, 9 insertions, 2 deletions
diff --git a/startupscreen/MainView.qml b/startupscreen/MainView.qml
index 4e0a234..fb79df3 100644
--- a/startupscreen/MainView.qml
+++ b/startupscreen/MainView.qml
@@ -200,7 +200,7 @@ Item {
Text {
id: ipLabel
color: "grey"
- text: "Network"
+ text: "Networks:"
anchors.bottom: ipAddress.top
anchors.horizontalCenter: ipAddress.horizontalCenter
font.pixelSize: textNormal
@@ -209,13 +209,20 @@ Item {
Text {
id: ipAddress
color: "grey"
- text: "eth0: 255.255.255.255\nusb0: 0:0.0.0.0"
+ text: SettingsManager.networks
anchors.bottom: root.bottom
anchors.right: root.right
anchors.rightMargin: 5
font.pixelSize: textNormal
font.bold: true
font.family: "Titillium Web"
+
+ Timer {
+ interval: 3000
+ onTriggered: ipAddress.text = SettingsManager.networks
+ running: true
+ repeat: true
+ }
}
UsbModeDialog {