diff options
author | Mitch Curtis <mitch.curtis@theqtcompany.com> | 2015-10-22 09:31:23 +0200 |
---|---|---|
committer | Mitch Curtis <mitch.curtis@theqtcompany.com> | 2015-10-22 08:25:53 +0000 |
commit | d7f141944aee1e9d5a264168ea2d1d917a1e24b8 (patch) | |
tree | 0474c01aed1798b9761cbea55ea5368366b2bb06 /src/extras/Styles/Flat | |
parent | 7ab104b60802e1d031f26232d108a65998dd40cd (diff) | |
download | qtquickcontrols-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/Styles/Flat')
-rw-r--r-- | src/extras/Styles/Flat/GroupBoxStyle.qml | 4 |
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 } |