mirror of https://github.com/GNOME/gimp.git
Bug 795177 - seg fault with clone tool
Don't flush the source pickable in gimp_source_core_motion(), as this introduces a race condition between the paint thread and the display-update timeout, when the source pickable is the image containing the target drawable. Flushing the source pickable shouldn't be currently necessary, and either way, should happen during initialization.
This commit is contained in:
parent
65c7ce5e7d
commit
ff34965faf
|
@ -418,8 +418,6 @@ gimp_source_core_motion (GimpSourceCore *source_core,
|
|||
base_src_offset_x += off_x;
|
||||
base_src_offset_y += off_y;
|
||||
}
|
||||
|
||||
gimp_pickable_flush (src_pickable);
|
||||
}
|
||||
|
||||
gimp_brush_core_eval_transform_dynamics (GIMP_BRUSH_CORE (paint_core),
|
||||
|
|
Loading…
Reference in New Issue