forked from qt-creator/qt-creator
QmlDesigner: Fix exposed vectorXd properties
Look for vectorXd properties from QtQuick module instead of QtQuick3D. Fixes: QDS-15432 Change-Id: If81f52a1fe5a51cd30e7c7d74ca9cffabb5b029d Reviewed-by: Mahmoud Badri <mahmoud.badri@qt.io> Reviewed-by: Marco Bubke <marco.bubke@qt.io>
This commit is contained in:
@@ -88,19 +88,19 @@ AutoTypes {
|
|||||||
|
|
||||||
Type {
|
Type {
|
||||||
typeNames: ["vector2d"]
|
typeNames: ["vector2d"]
|
||||||
module: "QtQuick3D"
|
module: "QtQuick"
|
||||||
sourceFile: "Vector2dEditorTemplate.template"
|
sourceFile: "Vector2dEditorTemplate.template"
|
||||||
}
|
}
|
||||||
|
|
||||||
Type {
|
Type {
|
||||||
typeNames: ["vector3d"]
|
typeNames: ["vector3d"]
|
||||||
module: "QtQuick3D"
|
module: "QtQuick"
|
||||||
sourceFile: "Vector3dEditorTemplate.template"
|
sourceFile: "Vector3dEditorTemplate.template"
|
||||||
}
|
}
|
||||||
|
|
||||||
Type {
|
Type {
|
||||||
typeNames: ["vector4d"]
|
typeNames: ["vector4d"]
|
||||||
module: "QtQuick3D"
|
module: "QtQuick"
|
||||||
sourceFile: "Vector4dEditorTemplate.template"
|
sourceFile: "Vector4dEditorTemplate.template"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user