Index: sources/gui/qml/components/HeaderBar.qml =================================================================== diff -u -r5fdac82425ab432aeda805a3ed7ad8cb2efc2bd1 -r56b3b76d1a22c122e5f8d64ce543f64dfc86db6e --- sources/gui/qml/components/HeaderBar.qml (.../HeaderBar.qml) (revision 5fdac82425ab432aeda805a3ed7ad8cb2efc2bd1) +++ sources/gui/qml/components/HeaderBar.qml (.../HeaderBar.qml) (revision 56b3b76d1a22c122e5f8d64ce543f64dfc86db6e) @@ -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