Prechádzať zdrojové kódy

All columns are receptive until the system is initialized

Donald Carr 8 rokov pred
rodič
commit
63a7bd38d9
1 zmenil súbory, kde vykonal 1 pridanie a 1 odobranie
  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) {