From e33457cb6e91e7ce2e3377e41844fdb6a7ab5573 Mon Sep 17 00:00:00 2001 From: Alberto Griggio Date: Tue, 18 Apr 2017 14:41:01 +0200 Subject: [PATCH] do not write pp3's alongside image files if the preferences say they must go to the cache Fix for #3834 --- rtgui/thumbnail.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rtgui/thumbnail.cc b/rtgui/thumbnail.cc index 2e8a904c1..cd33f393d 100644 --- a/rtgui/thumbnail.cc +++ b/rtgui/thumbnail.cc @@ -219,7 +219,7 @@ rtengine::procparams::ProcParams* Thumbnail::createProcParamsForUpdate(bool retu const bool create = (!hasProcParams() || force); const Glib::ustring outFName = - (options.paramsLoadLocation == PLL_Input) ? + (options.paramsLoadLocation == PLL_Input && options.saveParamsFile) ? fname + paramFileExtension : getCacheFileName("profiles", paramFileExtension);