Index: sources/gui/qml/components/HeaderBar.qml =================================================================== diff -u -r76e1360b5d2377d4f6d3310d524a902a04e64ff1 -rc25c6f4c14dd48a77d863b0af4c708cb781db91c --- sources/gui/qml/components/HeaderBar.qml (.../HeaderBar.qml) (revision 76e1360b5d2377d4f6d3310d524a902a04e64ff1) +++ sources/gui/qml/components/HeaderBar.qml (.../HeaderBar.qml) (revision c25c6f4c14dd48a77d863b0af4c708cb781db91c) @@ -84,7 +84,6 @@ horizontalAlignment : Text.Alignleft verticalAlignment : Text.AlignBottom - height : 15 width : _root.width / 5 @@ -101,7 +100,6 @@ horizontalAlignment : Text.Alignleft verticalAlignment : Text.AlignBottom - height : 15 width : _root.width / 5 text : vDateTime.timezone @@ -110,7 +108,6 @@ MainMenu { id: _headerMenu anchors { - top : parent.top left : _dateTimeItem.right bottom : parent.bottom } @@ -179,7 +176,6 @@ onPressed: print("CloudSync button pressed!") } - IconButton { id : _storageButton iconSize : Variables.headerIconDiameter iconImageSource : "qrc:/images/iStorage" Index: sources/gui/qml/components/MainMenu.qml =================================================================== diff -u -r76e1360b5d2377d4f6d3310d524a902a04e64ff1 -rc25c6f4c14dd48a77d863b0af4c708cb781db91c --- sources/gui/qml/components/MainMenu.qml (.../MainMenu.qml) (revision 76e1360b5d2377d4f6d3310d524a902a04e64ff1) +++ sources/gui/qml/components/MainMenu.qml (.../MainMenu.qml) (revision c25c6f4c14dd48a77d863b0af4c708cb781db91c) @@ -114,6 +114,6 @@ onHiddenChanged: { let isHidden = hidden || disable - _root.anchors.bottomMargin = isHidden ? -120: 0 + _root.anchors.bottomMargin = isHidden ? -height: 0 } }