aboutsummaryrefslogtreecommitdiffstats
path: root/homescreen/qml/StatusArea.qml
diff options
context:
space:
mode:
authorScott Murray <scott.murray@konsulko.com>2022-01-28 17:02:52 -0500
committerScott Murray <scott.murray@konsulko.com>2022-01-28 17:09:11 -0500
commitb7b156ece9492401f7bfe7676e7521f4cdd32905 (patch)
tree066a41e772b4d420f9a8a28edd7b77cafc3ccdbb /homescreen/qml/StatusArea.qml
parenta3c4beb8a9d1a01a4a29434e8319be7ce3f0d42f (diff)
Re-enable the status bar Bluetooth and Wifi status monitoring via the libqtappfw provided objects, and also hook up the currently stubbed weather support so it'll start working if it is updated in libqtappfw. Bug-AGL: SPEC-4182 Signed-off-by: Scott Murray <scott.murray@konsulko.com> Change-Id: I3aeb98dc01c0bc09550824f44bcb1d40f324e49e
Diffstat (limited to 'homescreen/qml/StatusArea.qml')
-rw-r--r--homescreen/qml/StatusArea.qml8
1 files changed, 2 insertions, 6 deletions
diff --git a/homescreen/qml/StatusArea.qml b/homescreen/qml/StatusArea.qml
index 87b27ad..4a8fbc0 100644
--- a/homescreen/qml/StatusArea.qml
+++ b/homescreen/qml/StatusArea.qml
@@ -30,7 +30,7 @@ Item {
interval: 100; running: true; repeat: true;
onTriggered: root.now = new Date
}
-/*
+
Connections {
target: weather
@@ -54,7 +54,7 @@ Item {
temperature_item.text = temperature.split(".")[0] + '°F'
}
}
-*/
+
RowLayout {
anchors.fill: parent
spacing: 0
@@ -126,7 +126,6 @@ Item {
fillMode: Image.PreserveAspectFit
property string deviceName: "none"
property bool connStatus: false
-/*
Connections {
target: bluetooth
@@ -134,9 +133,7 @@ Item {
bt_icon.connStatus = state
}
}
-*/
}
-/*
Repeater {
model: StatusBarModel { objectName: "statusBar" }
delegate: Image {
@@ -146,7 +143,6 @@ Item {
fillMode: Image.PreserveAspectFit
}
}
-*/
}
}
}