Procházet zdrojové kódy

All columns are receptive until the system is initialized

Donald Carr před 8 roky
rodič
revize
63a7bd38d9
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  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) {