Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntonioya <blendergit@gmail.com>2019-05-28 18:10:58 +0300
committerAntonioya <blendergit@gmail.com>2019-05-28 18:11:13 +0300
commitfbe7c848c20c1f3fef0b2ee47b9d2d2fa19a5b5e (patch)
treeb54574a1edd9ab5a06a15b0dd0a23fb1ff398437 /source/blender/makesrna/intern/rna_gpencil.c
parente256bc22503772b4550fadb778e8247dc26f905f (diff)
Fix T64005: GPencil clamping pixels do not always work
Diffstat (limited to 'source/blender/makesrna/intern/rna_gpencil.c')
-rw-r--r--source/blender/makesrna/intern/rna_gpencil.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_gpencil.c b/source/blender/makesrna/intern/rna_gpencil.c
index a78eebd2618..f00921bf072 100644
--- a/source/blender/makesrna/intern/rna_gpencil.c
+++ b/source/blender/makesrna/intern/rna_gpencil.c
@@ -1424,7 +1424,7 @@ static void rna_def_gpencil_layer(BlenderRNA *brna)
RNA_def_property_clear_flag(prop, PROP_ANIMATABLE);
RNA_def_property_ui_text(
prop, "Clamp Layer", "Clamp any pixel outside underlying layers drawing");
- RNA_def_property_update(prop, NC_GPENCIL | ND_DATA, NULL);
+ RNA_def_property_update(prop, NC_GPENCIL | ND_DATA, "rna_GPencil_update");
/* solo mode: Only display frames with keyframe */
prop = RNA_def_property(srna, "use_solo_mode", PROP_BOOLEAN, PROP_NONE);