[Bf-blender-cvs] [e63869ca802] blender2.7: Fix T60896: Missing update for Auto Texture Space.

Bastien Montagne noreply at git.blender.org
Mon Jan 28 22:25:55 CET 2019


Commit: e63869ca802a59e80989c255776f86ad8289cf56
Author: Bastien Montagne
Date:   Mon Jan 28 22:25:26 2019 +0100
Branches: blender2.7
https://developer.blender.org/rBe63869ca802a59e80989c255776f86ad8289cf56

Fix T60896: Missing update for Auto Texture Space.

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

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

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

diff --git a/source/blender/makesrna/intern/rna_mesh.c b/source/blender/makesrna/intern/rna_mesh.c
index c97cf2923f2..ef2ca9a08df 100644
--- a/source/blender/makesrna/intern/rna_mesh.c
+++ b/source/blender/makesrna/intern/rna_mesh.c
@@ -3519,6 +3519,7 @@ static void rna_def_mesh(BlenderRNA *brna)
 	RNA_def_property_boolean_sdna(prop, NULL, "texflag", ME_AUTOSPACE);
 	RNA_def_property_ui_text(prop, "Auto Texture Space",
 	                         "Adjust active object's texture space automatically when transforming object");
+	RNA_def_property_update(prop, 0, "rna_Mesh_update_data");
 
 #if 0
 	prop = RNA_def_property(srna, "texspace_location", PROP_FLOAT, PROP_TRANSLATION);



More information about the Bf-blender-cvs mailing list