From a1714994f2cdfc4c6d06eabfae282ef236d4af62 Mon Sep 17 00:00:00 2001 From: Michael Ezra Date: Tue, 28 Feb 2012 21:40:23 -0500 Subject: [PATCH] Fix - adding '.out' to the pp3 filename next to output file when image is saved via queue --- rtgui/batchqueue.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rtgui/batchqueue.cc b/rtgui/batchqueue.cc index 43334a8c2..3ce5dd70b 100644 --- a/rtgui/batchqueue.cc +++ b/rtgui/batchqueue.cc @@ -398,7 +398,7 @@ rtengine::ProcessingJob* BatchQueue::imageReady (rtengine::IImage16* img) { // We keep the extension to avoid overwriting the profile when we have // the same output filename with different extension //processing->params.save (removeExtension(fname) + paramFileExtension); - processing->params.save (fname + paramFileExtension); + processing->params.save (fname + ".out" + paramFileExtension); } if (processing->thumbnail) {