aboutsummaryrefslogtreecommitdiffstats
path: root/src/quick/items
diff options
context:
space:
mode:
authorMitch Curtis <mitch.curtis@qt.io>2020-11-09 18:49:09 +0100
committerQt Cherry-pick Bot <cherrypick_bot@qt-project.org>2021-01-05 15:29:12 +0000
commit5a7483f42f611f5af748955965b3ee7e76a72a34 (patch)
treef5e055224d7b1bc9cb6ba1e5c3e790a5c6208fd8 /src/quick/items
parentbd2129e3f2adf9c6b3dd77e4f382cf9db13dcd7d (diff)
Doc: mention that Item's childrenRect property is local to the item
As opposed to being local to the item's parent. Change-Id: Idcf2cdbedcac24a6890ce761c3f2a23f2c7a8dc4 Reviewed-by: Laszlo Agocs <laszlo.agocs@qt.io> (cherry picked from commit a0769549cdb81c7104b60c2a67dfa62e8c42c224) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
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()
{