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>2013-12-12 11:51:04 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2013-12-12 11:51:04 +0400
commit460a96dc5a09110bb3617c0f3528473573504b69 (patch)
treedce0c559a703b629101b619f76fdaedaf9a77f8e /source/blender/makesrna/intern/rna_tracking.c
parent61616b0b8898b9736a64341a4a6fea46ad8ea802 (diff)
Use factor subtype for plane track opacity
Diffstat (limited to 'source/blender/makesrna/intern/rna_tracking.c')
-rw-r--r--source/blender/makesrna/intern/rna_tracking.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_tracking.c b/source/blender/makesrna/intern/rna_tracking.c
index 871bc159f28..7acd078f006 100644
--- a/source/blender/makesrna/intern/rna_tracking.c
+++ b/source/blender/makesrna/intern/rna_tracking.c
@@ -1483,7 +1483,7 @@ static void rna_def_trackingPlaneTrack(BlenderRNA *brna)
RNA_def_property_update(prop, NC_MOVIECLIP | ND_DISPLAY, NULL);
/* image opacity */
- prop = RNA_def_property(srna, "image_opacity", PROP_FLOAT, PROP_NONE);
+ prop = RNA_def_property(srna, "image_opacity", PROP_FLOAT, PROP_FACTOR);
RNA_def_property_clear_flag(prop, PROP_ANIMATABLE);
RNA_def_property_range(prop, 0.0, 1.0);
RNA_def_property_ui_text(prop, "Image Opacity", "Opacity of the image");