ソースを参照

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() {