[Bf-blender-cvs] [8a901d4925d] blender-v2.93-release: Fix T94366: Grease Pencil Automerge no immediate UI update

Philipp Oeser noreply at git.blender.org
Tue Jan 11 16:00:22 CET 2022


Commit: 8a901d4925de6c1966b0df12104cdda1543ee02b
Author: Philipp Oeser
Date:   Tue Jan 4 10:54:36 2022 +0100
Branches: blender-v2.93-release
https://developer.blender.org/rB8a901d4925de6c1966b0df12104cdda1543ee02b

Fix T94366: Grease Pencil Automerge no immediate UI update

Just an oversight in rBe9607f45d85d.
Now add notifier that toolsettings changed.

Maniphest Tasks: T94366

Differential Revision: https://developer.blender.org/D13723

===================================================================

M	source/blender/makesrna/intern/rna_scene.c

===================================================================

diff --git a/source/blender/makesrna/intern/rna_scene.c b/source/blender/makesrna/intern/rna_scene.c
index be7c938a525..c3d1f1e537f 100644
--- a/source/blender/makesrna/intern/rna_scene.c
+++ b/source/blender/makesrna/intern/rna_scene.c
@@ -3226,6 +3226,7 @@ static void rna_def_tool_settings(BlenderRNA *brna)
       "Automerge",
       "Join by distance last drawn stroke with previous strokes in the active layer");
   RNA_def_property_clear_flag(prop, PROP_ANIMATABLE);
+  RNA_def_property_update(prop, NC_SCENE | ND_TOOLSETTINGS, NULL);
 
   prop = RNA_def_property(srna, "gpencil_sculpt", PROP_POINTER, PROP_NONE);
   RNA_def_property_pointer_sdna(prop, NULL, "gp_sculpt");



More information about the Bf-blender-cvs mailing list