From fedb38a0f5300c3d4ac1882ff85f678988e676f3 Mon Sep 17 00:00:00 2001 From: Thomas Hartmann Date: Fri, 15 Sep 2023 15:11:08 +0200 Subject: [PATCH] QmlDesigner: Priotize 3D related properties Task-number: QDS-10682 Change-Id: Ib75877257ea34edfa539a198e56d9499810aca15 Reviewed-by: Qt CI Patch Build Bot Reviewed-by: Reviewed-by: Thomas Hartmann --- .../connectioneditor/propertytreemodel.cpp | 44 ++++++++++++++++--- 1 file changed, 37 insertions(+), 7 deletions(-) diff --git a/src/plugins/qmldesigner/components/connectioneditor/propertytreemodel.cpp b/src/plugins/qmldesigner/components/connectioneditor/propertytreemodel.cpp index f9b9fddd640..cd51def60a2 100644 --- a/src/plugins/qmldesigner/components/connectioneditor/propertytreemodel.cpp +++ b/src/plugins/qmldesigner/components/connectioneditor/propertytreemodel.cpp @@ -101,13 +101,43 @@ const std::vector priorityListSignals = {"clicked", "opacityChanged", "rotationChanged"}; -const std::vector priorityListProperties - = {"opacity", "visible", "value", "x", "y", - "width", "height", "rotation", "color", "scale", - "state", "enabled", "z", "text", "pressed", - "containsMouse", "checked", "hovered", "down", "clip", - "parent", "from", "radius", "smooth", "true", - "focus", "border.width", "border.color"}; +const std::vector priorityListProperties = {"opacity", + "visible", + "value", + "x", + "y", + "width", + "height", + "rotation", + "color", + "scale", + "state", + "enabled", + "z", + "text", + "pressed", + "containsMouse", + "checked", + "hovered", + "down", + "clip", + "parent", + "from", + "radius", + "smooth", + "true", + "focus", + "border.width", + "border.color", + "eulerRotation.x", + "eulerRotation.y", + "eulerRotation.z", + "scale.x", + "scale.y", + "scale.z", + "position.x", + "position.y", + "position.z"}; const std::vector priorityListSlots = {"toggle", "increase",