Index: sources/gui/qml/components/HeaderBar.qml =================================================================== diff -u -r934354462a353ff5e7fc2ddfe6f3a8f0121a8f3f -r6bff7fae4c7b28a493b5824598c669fa8ab920b3 --- sources/gui/qml/components/HeaderBar.qml (.../HeaderBar.qml) (revision 934354462a353ff5e7fc2ddfe6f3a8f0121a8f3f) +++ sources/gui/qml/components/HeaderBar.qml (.../HeaderBar.qml) (revision 6bff7fae4c7b28a493b5824598c669fa8ab920b3) @@ -8,6 +8,7 @@ property alias menuHidden : _headerMenu.hidden property alias headerMenuIndex : _headerMenu.index property alias titleText : _title.text + property alias loggedUser : _loggedInUser.text width : Variables.applicationWidth height : Variables.headerHeight @@ -37,12 +38,21 @@ } } + Text { id: _loggedInUser + color : Colors.textMain + anchors.top : parent.top + anchors.horizontalCenter: parent.horizontalCenter + horizontalAlignment : Text.AlignHCenter + verticalAlignment : Text.AlignVCenter + font.pixelSize : 18 + } + Text { id: _title color : Colors.textMain anchors.centerIn : parent horizontalAlignment : Text.AlignHCenter verticalAlignment : Text.AlignVCenter - font.pixelSize : 40 + font.pixelSize : 35 } Item { id: _dateTimeItem