Victor Giers 3 роки тому
джерело
коміт
d48274eb89
1 змінених файлів з 6 додано та 2 видалено
  1. 6
    2
      scancropper2.pde

+ 6
- 2
scancropper2.pde Переглянути файл

@@ -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;
}
}
}
}

Завантаження…
Відмінити
Зберегти