diff options
author | Thomas Hartmann <thomas.hartmann@qt.io> | 2019-09-05 16:41:07 +0200 |
---|---|---|
committer | Thomas Hartmann <thomas.hartmann@qt.io> | 2019-09-05 15:00:47 +0000 |
commit | 898bdf12c09dd189de4bb9ec3a87aff2863718fa (patch) | |
tree | 0fdeb0c32121c5ecf4822ef9aa0ea501308f0281 /share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick | |
parent | a88fc5fa38df87cd9acdc2e5b006c4f5fff7943a (diff) | |
download | qt-creator-898bdf12c09dd189de4bb9ec3a87aff2863718fa.tar.gz |
QmlDesigner: Fix issue in loader resizing
Change-Id: Ie37b11672fdc6a1f29e2077ff4989a2bdd89c130
Reviewed-by: Tim Jenssen <tim.jenssen@qt.io>
Reviewed-by: Henning Gründl <henning.gruendl@qt.io>
Diffstat (limited to 'share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick')
-rw-r--r-- | share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/ItemPane.qml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/ItemPane.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/ItemPane.qml index 5eb3a7cf85..d21f5f19fa 100644 --- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/ItemPane.qml +++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/ItemPane.qml @@ -247,8 +247,8 @@ Rectangle { active = true } - property int loaderHeight: specificsOne.item.height + tabView.extraHeight - onLoaderHeightChanged: tabView.specficsOneHeight = loaderHeight + property int loaderHeight: specificsTwo.item.height + tabView.extraHeight + onLoaderHeightChanged: tabView.specficsTwoHeight = loaderHeight onLoaded: { tabView.specficsTwoHeight = loaderHeight |