Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorj.delarago <joeydelarago@gmail.com>2022-03-02 13:34:03 +0300
committerj.delarago <joeydelarago@gmail.com>2022-03-02 13:34:03 +0300
commit30083c13d34e4a7d609a258ec3108b862a5551aa (patch)
treed4d061bd3fe27f8063dbb0ec812c839adfbfd83e /plugins/Marketplace/resources
parent50ac2eacc43110c26f2f7169d712880edc486371 (diff)
Swap implicit width/height for preferredWidth/Height to avoid binding loop error
CURA-8688
Diffstat (limited to 'plugins/Marketplace/resources')
-rw-r--r--plugins/Marketplace/resources/qml/Marketplace.qml4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/Marketplace/resources/qml/Marketplace.qml b/plugins/Marketplace/resources/qml/Marketplace.qml
index 5a30141b32..8fcba852bd 100644
--- a/plugins/Marketplace/resources/qml/Marketplace.qml
+++ b/plugins/Marketplace/resources/qml/Marketplace.qml
@@ -64,8 +64,8 @@ Window
// Page title.
Item
{
- implicitWidth: parent.width
- implicitHeight: childrenRect.height + UM.Theme.getSize("default_margin").height
+ Layout.preferredWidth: parent.width
+ Layout.preferredHeight: childrenRect.height + UM.Theme.getSize("default_margin").height
Label
{