Browse Source

Remove barf inducing transformation

Change-Id: Iea740d265b9eeec9656974ce0a4dbaddb46e255a
Donald Carr 8 years ago
parent
commit
a2528e2fe8
1 changed files with 0 additions and 32 deletions
  1. 0 32
      qml/views/reel/ReelImage.qml

+ 0 - 32
qml/views/reel/ReelImage.qml

@@ -6,36 +6,4 @@ ArtImage {
     id: root
 
     property bool reviewed: false
-
-    function bowOut() {
-        deathBow.start()
-    }
-
-    transform: Rotation {
-        id: evilAxis
-        origin.x: root.width/2
-        origin.y: root.height
-        axis { x: 1; y: 0; z: 0 }
-    }
-    SequentialAnimation {
-        id: deathBow
-//        PropertyAction {
-//            target: root
-//            property: "z"
-//            value: root.z + 1
-//        }
-        NumberAnimation {
-            easing.type: "InQuad"
-            target: evilAxis
-            property: "angle"
-            from: 0
-            to: 90
-            duration: 3000
-        }
-        PropertyAction {
-            target: root
-            property: "visible"
-            value: false
-        }
-    }
 }