From 2afe825b0055f0f30eb3506809ff010062716497 Mon Sep 17 00:00:00 2001 From: Oliver Duis Date: Mon, 4 Apr 2011 08:01:31 +0200 Subject: [PATCH] Fixed details crops refresh problem when moved; see issue #617 --- rtgui/crophandler.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rtgui/crophandler.cc b/rtgui/crophandler.cc index 327e70009..b6220b796 100644 --- a/rtgui/crophandler.cc +++ b/rtgui/crophandler.cc @@ -225,7 +225,7 @@ void CropHandler::update () { cropPixbuf.clear (); // To save threads, try to mark "needUpdate" without a thread first - if (!crop->tryUpdate()) { + if (crop->tryUpdate()) { if (isLowUpdatePriority) Glib::Thread::create(sigc::mem_fun(*crop, &DetailedCrop::fullUpdate), 0, false, true, Glib::THREAD_PRIORITY_LOW); else