Index: sources/gui/qml/components/HeaderBar.qml =================================================================== diff -u -r290835d1a861d8fe7a716d061f0b079d9cfff75a -r5e5c936f26d0dd06c89e9fd32de5775a37b52493 --- sources/gui/qml/components/HeaderBar.qml (.../HeaderBar.qml) (revision 290835d1a861d8fe7a716d061f0b079d9cfff75a) +++ sources/gui/qml/components/HeaderBar.qml (.../HeaderBar.qml) (revision 5e5c936f26d0dd06c89e9fd32de5775a37b52493) @@ -115,6 +115,21 @@ text : vDateTime.time font.pixelSize : Fonts.fontHeaderbarTime font.weight : Font.DemiBold + + Text { id: _timeZone // TEST : Current timezone + color : Colors.textMain + anchors { + bottom : _timeText.bottom + left : _timeText.right + } + horizontalAlignment : Text.Alignleft + verticalAlignment : Text.AlignBottom + + height : 15 + width : _root.width / 5 + text : vDateTime.timezone + font.pixelSize: Fonts.fontHeaderbarTimezone + } } Text { id: _dateText @@ -129,22 +144,6 @@ } } - Text { id: _timeZone // TEST : Current timezone - color : Colors.textMain - anchors { - top : parent.top - left : parent.left - leftMargin : parent.width / 5 - } - horizontalAlignment : Text.Alignleft - verticalAlignment : Text.AlignBottom - - height : 15 - width : _root.width / 5 - text : vDateTime.timezone - font.pixelSize: Fonts.fontHeaderbarTimezone - } - MainMenu { id: _headerMenu anchors { left : _dateTimeItem.right