diff options
author | Thomas Senyk <thomas.senyk@pelagicore.com> | 2013-01-15 14:54:45 +0100 |
---|---|---|
committer | The Qt Project <gerrit-noreply@qt-project.org> | 2013-01-26 13:19:54 +0100 |
commit | d841c19ce7bf472b7e9a04cd3e4179c79f95c32c (patch) | |
tree | b878f1f606f6f71bb1dc077f2064b1e76a33f413 | |
parent | 1444a08b7e16a09f056f3bed24cf843d29874cba (diff) | |
download | qtgraphicaleffects-d841c19ce7bf472b7e9a04cd3e4179c79f95c32c.tar.gz |
SourceProxy.qml: removing binding 'output: input'
The binding is redundant as onInputChanged will
always trigger setting output
Also the binding does generate binding-loop errors
Change-Id: Iaa1df71a633f4bbd0554d81bb807db59a02974ee
Reviewed-by: Gunnar Sletta <gunnar.sletta@digia.com>
-rw-r--r-- | src/effects/private/SourceProxy.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/effects/private/SourceProxy.qml b/src/effects/private/SourceProxy.qml index ef60a3e..2561d70 100644 --- a/src/effects/private/SourceProxy.qml +++ b/src/effects/private/SourceProxy.qml @@ -43,7 +43,7 @@ import QtQuick 2.0 Item { id: rootItem property variant input - property variant output: input + property variant output property variant sourceRect visible: false |