Explorar el Código

bug fixes

master
Victor Giers hace 3 años
padre
commit
d48274eb89
Se han modificado 1 ficheros con 6 adiciones y 2 borrados
  1. 6
    2
      scancropper2.pde

+ 6
- 2
scancropper2.pde Ver fichero

@@ -86,7 +86,7 @@ void setImage(int i) {
imageLoaded = true;
redraw();
}
boolean firstDrop = true;
void dropEvent(DropEvent theDropEvent) {

if (theDropEvent.isFile()) {
@@ -98,6 +98,7 @@ void dropEvent(DropEvent theDropEvent) {
println(folderURI);
for (int i = covers.size(); i-- != 0; covers.remove(i));
ArrayList<String> imgs = new ArrayList<String>();
imageNo = 0;
imageAmount = 0;
for (int i = 0; i < droppedFiles.length; i++) {
String fn = droppedFiles[i].toString().toLowerCase();
@@ -111,7 +112,10 @@ void dropEvent(DropEvent theDropEvent) {
images = new PImage[imageAmount];
if (imageNo++ <= imageAmount) imageNo++; //open on page 2
setImage(imageNo);
surface.setSize(displayWidth, displayHeight);
if (firstDrop) {
surface.setSize(displayWidth, displayHeight);
firstDrop = false;
}
}
}
}

Cargando…
Cancelar
Guardar