summaryrefslogtreecommitdiff
path: root/src/BatchImport.vala
diff options
context:
space:
mode:
authorJörg Frings-Fürst <debian@jff-webhosting.net>2017-11-12 16:48:02 +0100
committerJörg Frings-Fürst <debian@jff-webhosting.net>2017-11-12 16:48:02 +0100
commitabdaad68fb94e2d61448a6dfc14847df8a2c32b9 (patch)
tree26855c5dd3bfffdbf319d5ba4a38223a28de3e7c /src/BatchImport.vala
parent0f67b3cc674377559e66c5a6729fd499049a992f (diff)
parentdd7f98a232efe86f6e6055119c9414a0f9d9e67b (diff)
Merge branch 'feature/upstream' into develop
Diffstat (limited to 'src/BatchImport.vala')
-rw-r--r--src/BatchImport.vala9
1 files changed, 8 insertions, 1 deletions
diff --git a/src/BatchImport.vala b/src/BatchImport.vala
index 27cf4da..8e4ae5c 100644
--- a/src/BatchImport.vala
+++ b/src/BatchImport.vala
@@ -1265,7 +1265,14 @@ public class BatchImport : Object {
ready_sources.add(completed_object);
imported(completed_object.source, user_preview, total);
- report_progress(completed_object.source.get_filesize());
+ // If we have a photo, use master size. For RAW import, we might end up with reporting
+ // the size of the (much smaller) JPEG which will look like no progress at all
+ if (completed_object.source is PhotoSource) {
+ var photo_source = completed_object.source as PhotoSource;
+ report_progress(photo_source.get_master_filesize());
+ } else {
+ report_progress(completed_object.source.get_filesize());
+ }
file_import_complete();
}