From 5683c8ae8fbf22755fd6e4fefe9db0714e49d892 Mon Sep 17 00:00:00 2001 From: Thomas Hartmann Date: Wed, 6 Mar 2024 13:53:50 +0100 Subject: Use width/height instead of implicit versions MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit With Qt 6.7 we get issues with implicit sizes. Task-number: QDS-12174 Change-Id: I8378e35fa66de6aefebd7b0ed959bfb74ef823bd Reviewed-by: Henning Gründl --- src/imports/components/ArcItem.qml | 4 ++-- src/imports/components/PieItem.qml | 4 ++-- src/imports/components/TriangleItem.qml | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/imports/components/ArcItem.qml b/src/imports/components/ArcItem.qml index b71be2d..bd69bdf 100644 --- a/src/imports/components/ArcItem.qml +++ b/src/imports/components/ArcItem.qml @@ -120,8 +120,8 @@ import QtQuick.Shapes 1.12 Shape { id: root - implicitWidth: 100 - implicitHeight: 100 + width: 100 + height: 100 /*! The gradient of the arc fill color. diff --git a/src/imports/components/PieItem.qml b/src/imports/components/PieItem.qml index 230ccf5..b659967 100644 --- a/src/imports/components/PieItem.qml +++ b/src/imports/components/PieItem.qml @@ -97,8 +97,8 @@ import QtQuick.Shapes 1.12 Shape { id: root - implicitWidth: 100 - implicitHeight: 100 + width: 100 + height: 100 /*! The gradient of the pie fill color. diff --git a/src/imports/components/TriangleItem.qml b/src/imports/components/TriangleItem.qml index df170cc..b936eca 100644 --- a/src/imports/components/TriangleItem.qml +++ b/src/imports/components/TriangleItem.qml @@ -101,8 +101,8 @@ import QtQuick.Shapes 1.12 Shape { id: root - implicitWidth: 100 - implicitHeight: 100 + width: 100 + height: 100 /*! The gradient of the triangle fill color. -- cgit v1.2.3