summaryrefslogtreecommitdiffstats
path: root/tradeshow/iot-sensortag/resources/base/TopToolbar.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tradeshow/iot-sensortag/resources/base/TopToolbar.qml')
-rw-r--r--tradeshow/iot-sensortag/resources/base/TopToolbar.qml7
1 files changed, 6 insertions, 1 deletions
diff --git a/tradeshow/iot-sensortag/resources/base/TopToolbar.qml b/tradeshow/iot-sensortag/resources/base/TopToolbar.qml
index eb94cb2..fd5054d 100644
--- a/tradeshow/iot-sensortag/resources/base/TopToolbar.qml
+++ b/tradeshow/iot-sensortag/resources/base/TopToolbar.qml
@@ -151,7 +151,8 @@ Item {
}
Text {
- text: Qt.formatDateTime(new Date, "dddd, MMMM d, yyyy")
+ property bool showAddress : false
+ text: showAddress ? mainWindow.addresses : Qt.formatDateTime(new Date, "dddd, MMMM d, yyyy")
color: "white"
anchors.bottom: parent.bottom
anchors.bottomMargin: 16
@@ -160,6 +161,10 @@ Item {
horizontalAlignment: Text.AlignRight
font.pixelSize: Style.topToolbarSmallFontSize
font.capitalization: Font.AllUppercase
+ MouseArea {
+ anchors.fill: parent
+ onClicked: parent.showAddress = !parent.showAddress
+ }
}
Text {