aboutsummaryrefslogtreecommitdiffstats
path: root/src/imports/controls/ToolBar.qml
diff options
context:
space:
mode:
Diffstat (limited to 'src/imports/controls/ToolBar.qml')
-rw-r--r--src/imports/controls/ToolBar.qml10
1 files changed, 4 insertions, 6 deletions
diff --git a/src/imports/controls/ToolBar.qml b/src/imports/controls/ToolBar.qml
index 43666db2..7677607d 100644
--- a/src/imports/controls/ToolBar.qml
+++ b/src/imports/controls/ToolBar.qml
@@ -43,17 +43,15 @@ AbstractToolBar {
default property alias data: content.data
implicitWidth: Math.max(background ? background.implicitWidth : 0,
- contentWidth + leftPadding + rightPadding)
+ contentItem.implicitWidth + leftPadding + rightPadding)
implicitHeight: Math.max(background ? background.implicitHeight : 0,
- contentHeight + topPadding + bottomPadding)
-
- contentWidth: content.children.length === 1 ? content.children[0].implicitWidth : 0
- contentHeight: content.children.length === 1 ? content.children[0].implicitHeight : 0
+ contentItem.implicitHeight + topPadding + bottomPadding)
Accessible.role: Accessible.ToolBar
- contentItem: Item {
+ contentItem: Row {
id: content
+ spacing: control.Theme.spacing
}
background: Rectangle {