Details
-
Bug
-
Resolution: Unresolved
-
P1: Critical
-
6.8.0, 6.8.1
-
None
-
33c336751 (dev), 572bea2c5 (dev), dd4c30043 (6.9), 0f8010424 (6.9), 5ff3ab0bf (6.9.0), 0504aec14 (6.9.0), 314f843cb (6.8), 051577579 (6.8)
Description
When trying to use attached properties introduced in 6.8 the engine initialization fails with this error:
".useDefaultSizePolicy" is not available due to component versioning.
Other properties with REVISION(6, 8) are available as expected, only Accessible.id and Layout.useDefaultSizePolicy seem to affected.
The error message uses "%1.%2". %1 is missing in the error output, pointing to a problem in the QML parsing.
Code to reproduce the issue:
import QtQuick import QtQuick.Layouts Window { width: 600 height: 400 ColumnLayout { anchors.fill: parent Rectangle { // Broken Layout.useDefaultSizePolicy: Layout.SizePolicyImplicit // Broken // Accessible.id: "testId" } } }
◀