소스 검색

All columns are receptive until the system is initialized

Donald Carr 8 년 전
부모
커밋
63a7bd38d9
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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) {