aboutsummaryrefslogtreecommitdiffstats
path: root/src/imports/controls/imagine/ScrollView.qml
diff options
context:
space:
mode:
Diffstat (limited to 'src/imports/controls/imagine/ScrollView.qml')
-rw-r--r--src/imports/controls/imagine/ScrollView.qml3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/imports/controls/imagine/ScrollView.qml b/src/imports/controls/imagine/ScrollView.qml
index f7b30b6b..0bf0e6d8 100644
--- a/src/imports/controls/imagine/ScrollView.qml
+++ b/src/imports/controls/imagine/ScrollView.qml
@@ -46,9 +46,6 @@ T.ScrollView {
implicitWidth: Math.max(background ? background.implicitWidth : 0, contentWidth + leftPadding + rightPadding)
implicitHeight: Math.max(background ? background.implicitHeight : 0, contentHeight + topPadding + bottomPadding)
- contentWidth: contentItem.implicitWidth || (contentChildren.length === 1 ? contentChildren[0].implicitWidth : -1)
- contentHeight: contentItem.implicitHeight || (contentChildren.length === 1 ? contentChildren[0].implicitHeight : -1)
-
topPadding: background ? background.topPadding : 0
leftPadding: background ? background.leftPadding : 0
rightPadding: background ? background.rightPadding : 0