Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Sharybin <sergey.vfx@gmail.com>2012-09-19 21:14:43 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2012-09-19 21:14:43 +0400
commitef216ee558f68686e136f120617a59e2ba9a05ea (patch)
tree048ca3cb8fdcdc675419d87956aee67052bef510 /source/blender/makesrna/intern/rna_movieclip.c
parent3bf576e57eaddac527a8e2079998e705303fdadd (diff)
Mark movie clip user current frame as editable
It should be pretty safe change which would allow doing stuff like python-defined tracking routines without need to update the whole scene when it's needed to perform some operation on different clip frame. It'll be possible to write operators similar to tracking, which updates space clip's frame number, but not scene frame when tracking and only synchronizes scene frame number on operator finish.
Diffstat (limited to 'source/blender/makesrna/intern/rna_movieclip.c')
-rw-r--r--source/blender/makesrna/intern/rna_movieclip.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_movieclip.c b/source/blender/makesrna/intern/rna_movieclip.c
index 1dbcee424e6..b17236b393b 100644
--- a/source/blender/makesrna/intern/rna_movieclip.c
+++ b/source/blender/makesrna/intern/rna_movieclip.c
@@ -188,7 +188,6 @@ static void rna_def_moviecliUser(BlenderRNA *brna)
"Parameters defining how a MovieClip datablock is used by another datablock");
prop = RNA_def_property(srna, "current_frame", PROP_INT, PROP_TIME);
- RNA_def_property_clear_flag(prop, PROP_EDITABLE);
RNA_def_property_int_sdna(prop, NULL, "framenr");
RNA_def_property_range(prop, MINAFRAME, MAXFRAME);
RNA_def_property_ui_text(prop, "Current Frame", "Current frame number in movie or image sequence");