aboutsummaryrefslogtreecommitdiffstats
path: root/src/imports/controls/imagine/ToolTip.qml
diff options
context:
space:
mode:
Diffstat (limited to 'src/imports/controls/imagine/ToolTip.qml')
-rw-r--r--src/imports/controls/imagine/ToolTip.qml4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/imports/controls/imagine/ToolTip.qml b/src/imports/controls/imagine/ToolTip.qml
index 92e6cf36..ba33f400 100644
--- a/src/imports/controls/imagine/ToolTip.qml
+++ b/src/imports/controls/imagine/ToolTip.qml
@@ -45,9 +45,9 @@ T.ToolTip {
x: parent ? (parent.width - implicitWidth) / 2 : 0 - (background ? background.leftInset : 0)
y: -implicitHeight - (background ? background.topInset : 0)
- implicitWidth: Math.max(implicitBackgroundWidth,
+ implicitWidth: Math.max(implicitBackgroundWidth + leftInset + rightInset,
contentWidth + leftPadding + rightPadding)
- implicitHeight: Math.max(implicitBackgroundHeight,
+ implicitHeight: Math.max(implicitBackgroundHeight + topInset + bottomInset,
contentHeight + topPadding + bottomPadding)
topMargin: background ? background.topInset : 0