diff --git a/src/controls/ToolBarApplicationHeader.qml b/src/controls/ToolBarApplicationHeader.qml --- a/src/controls/ToolBarApplicationHeader.qml +++ b/src/controls/ToolBarApplicationHeader.qml @@ -32,7 +32,7 @@ ApplicationHeader { id: header - preferredHeight: 38 + preferredHeight: 42 maximumHeight: preferredHeight headerStyle: ApplicationHeaderStyle.Titles @@ -60,6 +60,7 @@ } PrivateActionToolButton { anchors.verticalCenter: parent.verticalCenter + anchors.leftMargin: 4 kirigamiAction: page && page.actions ? page.actions.left : null showText: false } diff --git a/src/controls/templates/private/BackButton.qml b/src/controls/templates/private/BackButton.qml --- a/src/controls/templates/private/BackButton.qml +++ b/src/controls/templates/private/BackButton.qml @@ -27,6 +27,8 @@ anchors { top: parent.top bottom: parent.bottom + margins: 4 + left: parent.left } width: visible ? height : 0 z: 99 diff --git a/src/controls/templates/private/ForwardButton.qml b/src/controls/templates/private/ForwardButton.qml --- a/src/controls/templates/private/ForwardButton.qml +++ b/src/controls/templates/private/ForwardButton.qml @@ -27,6 +27,7 @@ anchors { top: parent.top bottom: parent.bottom + margins: 4 } width: visible ? height : 0 z: 99