浏览代码

Reel: Animate columns back to front

Donald Carr 8 年之前
父节点
当前提交
129e694df0
共有 1 个文件被更改,包括 3 次插入1 次删除
  1. 3 1
      qml/views/reel/Reel.qml

+ 3 - 1
qml/views/reel/Reel.qml

@@ -31,7 +31,9 @@ View {
         property real columnWidth: root.width*globalUtil.columnWidthRatio(d.columnRatio, globalSettings.columnCount)
 
         function animationStep() {
-            columnArray.forEach(function(column) { column.animationStep(); })
+            for(var i = columnArray.length - 1; i >= 0; i--) {
+                columnArray[i].animationStep()
+            }
         }
 
         function killLastImage() {