Curve adjustment point pipette sometimes unresponsive, fixes #4859

This commit is contained in:
heckflosse
2018-10-12 00:24:12 +02:00
parent adcbdd4f4f
commit 18a548cd6b

View File

@@ -896,7 +896,7 @@ void ImProcCoordinator::updatePreviewImage(int todo, bool panningRelatedChange)
// process crop, if needed
for (size_t i = 0; i < crops.size(); i++)
if (crops[i]->hasListener() && (panningRelatedChange || (todo & M_MONITOR) || crops[i]->get_skip() == 1)) {
if (crops[i]->hasListener() && (panningRelatedChange || (todo & (M_MONITOR | M_RGBCURVE | M_LUMACURVE)) || crops[i]->get_skip() == 1)) {
crops[i]->update(todo); // may call ourselves
}