summaryrefslogtreecommitdiff
path: root/src/extras
diff options
context:
space:
mode:
authorMitch Curtis <mitch.curtis@theqtcompany.com>2015-10-22 09:31:23 +0200
committerMitch Curtis <mitch.curtis@theqtcompany.com>2015-10-22 08:25:53 +0000
commitd7f141944aee1e9d5a264168ea2d1d917a1e24b8 (patch)
tree0474c01aed1798b9761cbea55ea5368366b2bb06 /src/extras
parent7ab104b60802e1d031f26232d108a65998dd40cd (diff)
downloadqtquickcontrols-d7f141944aee1e9d5a264168ea2d1d917a1e24b8.tar.gz
GroupBoxStyle: work around Binding regression
Change-Id: I1541593e3aed08a82a0041a68c93a3cb753236fc Task-number: QTBUG-48918 Reviewed-by: J-P Nurmi <jpnurmi@theqtcompany.com>
Diffstat (limited to 'src/extras')
-rw-r--r--src/extras/Styles/Flat/GroupBoxStyle.qml4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/extras/Styles/Flat/GroupBoxStyle.qml b/src/extras/Styles/Flat/GroupBoxStyle.qml
index 65f8cf19..e72c6075 100644
--- a/src/extras/Styles/Flat/GroupBoxStyle.qml
+++ b/src/extras/Styles/Flat/GroupBoxStyle.qml
@@ -65,8 +65,8 @@ Private.GroupBoxStyle {
// TODO:
Binding {
- target: root
- property: "padding.top"
+ target: root.padding
+ property: "top"
value: background.anchors.topMargin + root.spacing
}