aboutsummaryrefslogtreecommitdiffstats
path: root/src/quick/items
diff options
context:
space:
mode:
authorMitch Curtis <mitch.curtis@qt.io>2020-11-09 18:49:09 +0100
committerMitch Curtis <mitch.curtis@qt.io>2021-01-05 13:52:47 +0000
commita0769549cdb81c7104b60c2a67dfa62e8c42c224 (patch)
treefa9ff1c0d706282d845c68384556f6a97b51062f /src/quick/items
parent6e324dbfca7c972d7d4120adc03c226fb9ccc594 (diff)
Doc: mention that Item's childrenRect property is local to the item
As opposed to being local to the item's parent. Pick-to: 6.0 5.15 Change-Id: Idcf2cdbedcac24a6890ce761c3f2a23f2c7a8dc4 Reviewed-by: Laszlo Agocs <laszlo.agocs@qt.io>
Diffstat (limited to 'src/quick/items')
-rw-r--r--src/quick/items/qquickitem.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/quick/items/qquickitem.cpp b/src/quick/items/qquickitem.cpp
index b5f58c7712..38e83e08ff 100644
--- a/src/quick/items/qquickitem.cpp
+++ b/src/quick/items/qquickitem.cpp
@@ -3673,6 +3673,10 @@ QQmlListProperty<QObject> QQuickItemPrivate::data()
This property is useful if you need to access the collective geometry
of an item's children in order to correctly size the item.
+
+ The geometry that is returned is local to the item. For example:
+
+ \snippet qml/item/childrenRect.qml local
*/
/*!
\property QQuickItem::childrenRect
@@ -3682,6 +3686,10 @@ QQmlListProperty<QObject> QQuickItemPrivate::data()
This property is useful if you need to access the collective geometry
of an item's children in order to correctly size the item.
+
+ The geometry that is returned is local to the item. For example:
+
+ \snippet qml/item/childrenRect.qml local
*/
QRectF QQuickItem::childrenRect()
{