Index: sources/gui/qml/components/HeaderBar.qml =================================================================== diff -u -rb1611462da7580dc1eb5168d5054e31624a131ca -re1ecb77ba0ff9619b7363f14e1ed3c3e110c4057 --- sources/gui/qml/components/HeaderBar.qml (.../HeaderBar.qml) (revision b1611462da7580dc1eb5168d5054e31624a131ca) +++ sources/gui/qml/components/HeaderBar.qml (.../HeaderBar.qml) (revision e1ecb77ba0ff9619b7363f14e1ed3c3e110c4057) @@ -68,27 +68,13 @@ } } - Text { id: _version // TEST : Application version should be moved into the information screen later. + Text { id: _timeZone // TEST : Current timezone color : Colors.textMain anchors { top : parent.top left : parent.left + leftMargin : parent.width / 5 } - horizontalAlignment : Text.AlignHCenter - verticalAlignment : Text.AlignBottom - - height : 15 - width : _root.width / 4 - text : Qt.application.version //DEBUG: + "[" + _GuiView.platform + "]" - font.pixelSize: 14 - } - - Text { id: _timeZone // TEST : Current timezone - color : Colors.textMain - anchors { - top : parent.top - left : _version.right - } horizontalAlignment : Text.Alignleft verticalAlignment : Text.AlignBottom @@ -143,6 +129,7 @@ iconSize : Variables.headerIconDiameter iconImageSource : "qrc:/images/iBluetooth" extraSpace : _headerButtonRow.spacing + enabled : false onPressed : print("Bluetooth button pressed!") } @@ -151,6 +138,7 @@ iconSize : Variables.headerIconDiameter iconImageSource : "qrc:/images/iCloudSync" extraSpace : _headerButtonRow.spacing + enabled : false onPressed : print("CloudSync button pressed!") } @@ -176,7 +164,7 @@ iconImageSource : "qrc:/images/iInformation" extraSpace : _headerButtonRow.spacing - onPressed : print("Information button pressed!") + onPressed : _headerbarInformation.openDialog(_informationButton) } } }