diff options
author | Gunnar Sletta <gunnar.sletta@digia.com> | 2013-11-07 12:05:08 +0100 |
---|---|---|
committer | The Qt Project <gerrit-noreply@qt-project.org> | 2013-11-07 14:42:26 +0100 |
commit | c640a496d63036ead177dd006ef56b9b12d962bb (patch) | |
tree | b5ab94af35d75f0864e24ae782f97dcb72ebd7d7 /src/effects/Blend.qml | |
parent | d6fed8cb61f74ec491ef3fb297d8fe6167505cc6 (diff) | |
download | qtgraphicaleffects-c640a496d63036ead177dd006ef56b9b12d962bb.tar.gz |
Document recursion limitations of the graphical effects.v5.2.0-rc1v5.2.0
Task-number: QTBUG-31902
Change-Id: Id9d81ffddda3ee666840f602bb8c85ff00545547
Reviewed-by: Jerome Pasion <jerome.pasion@digia.com>
Diffstat (limited to 'src/effects/Blend.qml')
-rw-r--r-- | src/effects/Blend.qml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/effects/Blend.qml b/src/effects/Blend.qml index 9d0e134..59d8646 100644 --- a/src/effects/Blend.qml +++ b/src/effects/Blend.qml @@ -75,12 +75,18 @@ Item { /*! This property defines the source item that is going to be the base when \l{Blend::foregroundSource}{foregroundSource} is blended over it. + + \note It is not supported to let the effect include itself, for + instance by setting source to the effect's parent. */ property variant source /*! This property defines the item that is going to be blended over the \l{Blend::source}{source}. + + \note It is not supported to let the effect include itself, for + instance by setting foregroundSource to the effect's parent. */ property variant foregroundSource |