Details
-
Bug
-
Resolution: Done
-
P3: Somewhat important
-
6.0
-
b07d653c092d148b47c9918c842c5db85de414b5 (qt/qtdeclarative/dev)
Description
Warning: Property "T" not found on type "Rectangle" at src/imports/controls/material/SplitView.qml:64:41 property int length: parent.T.SplitHandle.pressed ? 3 : 8 ^ Warning: Property "T" not found on type "Rectangle" at src/imports/controls/material/SplitView.qml:65:53 readonly property int thickness: parent.T.SplitHandle.pressed ? 3 : 1
The code looks correct to me:
import QtQuick 2.13 import QtQuick.Templates 2.13 as T import QtQuick.Controls 2.13 import QtQuick.Controls.impl 2.13 import QtQuick.Controls.Material 2.13 T.SplitView { id: control implicitWidth: Math.max(implicitBackgroundWidth + leftInset + rightInset, implicitContentWidth + leftPadding + rightPadding) implicitHeight: Math.max(implicitBackgroundHeight + topInset + bottomInset, implicitContentHeight + topPadding + bottomPadding) handle: Rectangle { implicitWidth: control.orientation === Qt.Horizontal ? 6 : control.width implicitHeight: control.orientation === Qt.Horizontal ? control.height : 6 color: T.SplitHandle.pressed ? control.Material.background : Qt.lighter(control.Material.background, T.SplitHandle.hovered ? 1.2 : 1.1) Rectangle { color: control.Material.secondaryTextColor width: control.orientation === Qt.Horizontal ? thickness : length height: control.orientation === Qt.Horizontal ? length : thickness radius: thickness x: (parent.width - width) / 2 y: (parent.height - height) / 2 property int length: parent.T.SplitHandle.pressed ? 3 : 8 readonly property int thickness: parent.T.SplitHandle.pressed ? 3 : 1 Behavior on length { NumberAnimation { duration: 100 } } } } }
Attachments
Issue Links
- resulted from
-
QTBUG-83755 Fix qmllint warnings
- Open
For Gerrit Dashboard: QTBUG-83762 | ||||||
---|---|---|---|---|---|---|
# | Subject | Branch | Project | Status | CR | V |
339430,5 | qmllint: Fix accessing attached types with prefixes | dev | qt/qtdeclarative | Status: MERGED | +2 | 0 |