Bug 787663 - Cage tool creates artifacts with multi-threading.

Temporarily disable multi-threading on the cage transform so that it
performs sanely until it is fixed.
This commit is contained in:
Jehan 2017-12-06 15:03:56 +01:00
parent 09c2ba4cc2
commit 87aaf576d2
1 changed files with 4 additions and 0 deletions

View File

@ -111,6 +111,10 @@ gimp_operation_cage_transform_class_init (GimpOperationCageTransformClass *klass
operation_class->get_cached_region = gimp_operation_cage_transform_get_cached_region;
operation_class->no_cache = FALSE;
operation_class->get_bounding_box = gimp_operation_cage_transform_get_bounding_box;
/* XXX Temporarily disable multi-threading on this operation until it
* is fixed. See bug 787663.
*/
operation_class->threaded = FALSE;
filter_class->process = gimp_operation_cage_transform_process;