Merge branch 'dev' into hidpi-icons
This commit is contained in:
@@ -26,6 +26,8 @@
|
||||
#include "multilangmgr.h"
|
||||
#include "thumbbrowserbase.h"
|
||||
|
||||
#include "../rtengine/procparams.h"
|
||||
|
||||
bool BatchQueueEntry::iconsLoaded(false);
|
||||
Glib::RefPtr<Gdk::Pixbuf> BatchQueueEntry::savedAsIcon;
|
||||
|
||||
@@ -36,7 +38,7 @@ BatchQueueEntry::BatchQueueEntry (rtengine::ProcessingJob* pjob, const rtengine:
|
||||
origph(prevh),
|
||||
opreviewDone(false),
|
||||
job(pjob),
|
||||
params(pparams),
|
||||
params(new rtengine::procparams::ProcParams(pparams)),
|
||||
progress(0),
|
||||
outFileName(""),
|
||||
sequence(0),
|
||||
@@ -93,7 +95,7 @@ void BatchQueueEntry::refreshThumbnailImage ()
|
||||
// creating the image buffer first
|
||||
//if (!opreview) opreview = new guint8[(origpw+1) * origph * 3];
|
||||
// this will asynchronously compute the original preview and land at this.updateImage
|
||||
batchQueueEntryUpdater.process (nullptr, origpw, origph, preh, this, ¶ms, thumbnail);
|
||||
batchQueueEntryUpdater.process (nullptr, origpw, origph, preh, this, params.get(), thumbnail);
|
||||
} else {
|
||||
// this will asynchronously land at this.updateImage
|
||||
batchQueueEntryUpdater.process (opreview, origpw, origph, preh, this);
|
||||
|
Reference in New Issue
Block a user