summaryrefslogtreecommitdiffstats
path: root/SlideDeckRotated.qml
diff options
context:
space:
mode:
authorGunnar Sletta <gunnar.sletta@nokia.com>2011-05-19 08:26:42 +0200
committerGunnar Sletta <gunnar.sletta@nokia.com>2011-05-19 08:26:42 +0200
commit3bd8c30c8154470c9b564b85ff69787f5a2eca4f (patch)
tree3c6bf19969dbd91a17ce919dc86027457e34c597 /SlideDeckRotated.qml
parentd7aaf421fc38c257785d005498c6332e9ef7673c (diff)
Rotated slide deck launcher and fixed a shader bug
Diffstat (limited to 'SlideDeckRotated.qml')
-rw-r--r--SlideDeckRotated.qml15
1 files changed, 15 insertions, 0 deletions
diff --git a/SlideDeckRotated.qml b/SlideDeckRotated.qml
new file mode 100644
index 0000000..a688fc9
--- /dev/null
+++ b/SlideDeckRotated.qml
@@ -0,0 +1,15 @@
+import QtQuick 2.0
+
+Item
+{
+ height: 640
+ width: 360
+ Item {
+ rotation: 90
+ SlideDeck {
+ y: -360
+ width: 640
+ height: 360
+ }
+ }
+}