[Bf-blender-cvs] [fe98ce1] blender-v2.76-release: Sequencer: show X, Y in text effect location

Campbell Barton noreply at git.blender.org
Wed Sep 23 16:12:11 CEST 2015


Commit: fe98ce1375e5292c5a21abc39c50dc2567e47eba
Author: Campbell Barton
Date:   Tue Sep 22 00:15:37 2015 +1000
Branches: blender-v2.76-release
https://developer.blender.org/rBfe98ce1375e5292c5a21abc39c50dc2567e47eba

Sequencer: show X,Y in text effect location

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

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

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

diff --git a/source/blender/makesrna/intern/rna_sequencer.c b/source/blender/makesrna/intern/rna_sequencer.c
index bfb6239..bcf04f7 100644
--- a/source/blender/makesrna/intern/rna_sequencer.c
+++ b/source/blender/makesrna/intern/rna_sequencer.c
@@ -2324,7 +2324,7 @@ static void rna_def_text(StructRNA *srna)
 	RNA_def_property_ui_range(prop, 0.0f, 1000, 1, -1);
 	RNA_def_property_update(prop, NC_SCENE | ND_SEQUENCER, "rna_Sequence_update");
 
-	prop = RNA_def_property(srna, "location", PROP_FLOAT, PROP_NONE);
+	prop = RNA_def_property(srna, "location", PROP_FLOAT, PROP_XYZ);
 	RNA_def_property_float_sdna(prop, NULL, "loc");
 	RNA_def_property_ui_text(prop, "Location", "Location of the text");
 	RNA_def_property_range(prop, -FLT_MAX, FLT_MAX);




More information about the Bf-blender-cvs mailing list