From 1cb6e1804eb72d9e3b1a9a5820fe226e8d31d272 Mon Sep 17 00:00:00 2001 From: natureh Date: Sat, 21 Jul 2012 21:01:13 +0200 Subject: [PATCH] Solving issue 451: "Preview not sharpened after enlarging to 100%" --- rtengine/dcrop.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/rtengine/dcrop.cc b/rtengine/dcrop.cc index 04b02fcdb..f2eb649c3 100644 --- a/rtengine/dcrop.cc +++ b/rtengine/dcrop.cc @@ -63,9 +63,6 @@ void Crop::update (int todo) { ProcParams& params = parent->params; - - parent->ipf.setScale (skip); - // give possibility to the listener to modify crop window (as the full image dimensions are already known at this point) int wx, wy, ww, wh, ws; bool overrideWindow = false; @@ -82,6 +79,9 @@ void Crop::update (int todo) { if (needsinitupdate || (todo & M_HIGHQUAL)) todo = ALL; + // set improcfuncions' scale now that skip has been updated + parent->ipf.setScale (skip); + baseCrop = origCrop; bool needstransform = parent->ipf.needsTransform();