Gimp.Image.freeze_vectors
@accepts(Gimp.Image)
@returns(bool)
def freeze_vectors(self):
# Python wrapper for gimp_image_freeze_vectors()
Freeze the image's vectors list.
This procedure freezes the vectors list of the image, suppressing any updates to the Paths dialog in response to changes to the image's vectors. This can significantly improve performance while applying changes affecting the vectors list.
Each call to Gimp.Image.freeze_vectors should be matched by a corresponding call to Gimp.Image.thaw_vectors, undoing its effects.
Since 2.10.2
- self
The image.
- Returns