diff options
Diffstat (limited to 'src/quickcontrols/material/TabBar.qml')
-rw-r--r-- | src/quickcontrols/material/TabBar.qml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/quickcontrols/material/TabBar.qml b/src/quickcontrols/material/TabBar.qml index 5daffc9797..6e4ce4ef4d 100644 --- a/src/quickcontrols/material/TabBar.qml +++ b/src/quickcontrols/material/TabBar.qml @@ -10,9 +10,9 @@ T.TabBar { id: control implicitWidth: Math.max(implicitBackgroundWidth + leftInset + rightInset, - contentWidth + leftPadding + rightPadding) + implicitContentWidth + leftPadding + rightPadding) implicitHeight: Math.max(implicitBackgroundHeight + topInset + bottomInset, - contentHeight + topPadding + bottomPadding) + implicitContentHeight + topPadding + bottomPadding) spacing: 1 |