[Bf-blender-cvs] [894fd0c] master: Sequencer: show X, Y in text effect location

Campbell Barton noreply at git.blender.org
Mon Sep 21 16:23:11 CEST 2015


Commit: 894fd0c2fc40ebbd5c501f4a49a9da8721b2cf54
Author: Campbell Barton
Date:   Tue Sep 22 00:15:37 2015 +1000
Branches: master
https://developer.blender.org/rB894fd0c2fc40ebbd5c501f4a49a9da8721b2cf54

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 8f45c18..2192eae 100644
--- a/source/blender/makesrna/intern/rna_sequencer.c
+++ b/source/blender/makesrna/intern/rna_sequencer.c
@@ -2330,7 +2330,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