Sequencer: show X,Y in text effect location

This commit is contained in:
Campbell Barton 2015-09-22 00:15:37 +10:00
parent 84b074baed
commit 894fd0c2fc
1 changed files with 1 additions and 1 deletions

View File

@ -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);