diff options
author | Sami Lempinen <sami.lempinen@nokia.com> | 2011-03-17 11:29:50 (GMT) |
---|---|---|
committer | Sami Lempinen <sami.lempinen@nokia.com> | 2011-03-17 11:29:50 (GMT) |
commit | cefacacee367684e3637665984401c8e1073859c (patch) | |
tree | 97cdbc9b1ca275b90c1a761d5617ff12b244b2e4 /tests/auto/declarative/qdeclarativeflickable/data | |
parent | 130f8dce2f730811c3f1f0b4f45a3333c9a79600 (diff) | |
parent | cbf6c5b810316efba3ccfb27f05576b8dbfe3890 (diff) | |
download | Qt-cefacacee367684e3637665984401c8e1073859c.zip Qt-cefacacee367684e3637665984401c8e1073859c.tar.gz Qt-cefacacee367684e3637665984401c8e1073859c.tar.bz2 |
Merge remote branch 'qt-master/master'
Diffstat (limited to 'tests/auto/declarative/qdeclarativeflickable/data')
-rw-r--r-- | tests/auto/declarative/qdeclarativeflickable/data/disabledcontent.qml | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/auto/declarative/qdeclarativeflickable/data/disabledcontent.qml b/tests/auto/declarative/qdeclarativeflickable/data/disabledcontent.qml new file mode 100644 index 0000000..dcbb20b --- /dev/null +++ b/tests/auto/declarative/qdeclarativeflickable/data/disabledcontent.qml @@ -0,0 +1,8 @@ +import QtQuick 1.0 + +Flickable { + width: 100; height: 100 + contentWidth: 200; contentHeight: 300 + + QGraphicsWidget { width: 200; height: 300; enabled: false } +} |