Browse Source

All columns are receptive until the system is initialized

Donald Carr 8 năm trước cách đây
mục cha
commit
63a7bd38d9
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      qml/reel/Reel.qml

+ 1 - 1
qml/reel/Reel.qml

@@ -59,7 +59,7 @@ View {
             }
 
             function receptive() {
-                return imageQueue.length < d.imageBuffer
+                return !d.initialized || imageQueue.length < d.imageBuffer
             }
 
             function addImage(image) {