Fixed details crops refresh problem when moved; see issue #617

This commit is contained in:
Oliver Duis
2011-04-04 08:01:31 +02:00
parent 567c13a1c1
commit 2afe825b00

View File

@@ -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