Explorar el Código

All columns are receptive until the system is initialized

Donald Carr hace 8 años
padre
commit
63a7bd38d9
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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) {