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:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2008-12-15 13:48:04 +0300
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2008-12-15 13:48:04 +0300
commit4a6d3b2ded36e5a5ea74121678d699c1ae9087c2 (patch)
treecdd8b2f507f2ded690f7c3d990c9528aaf1bc988 /source/blender/makesrna/intern/rna_image.c
parented7bf5a479fdf8ff778a3dd645400830d805e038 (diff)
RNA:
* DNA_sequence_types.h done, patch by Roelf de Kock, with various changes, mainly the use of inheritance for different sequence types and hiding the separate Strip struct.
Diffstat (limited to 'source/blender/makesrna/intern/rna_image.c')
-rw-r--r--source/blender/makesrna/intern/rna_image.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_image.c b/source/blender/makesrna/intern/rna_image.c
index a48c2962b7a..2a41961ca00 100644
--- a/source/blender/makesrna/intern/rna_image.c
+++ b/source/blender/makesrna/intern/rna_image.c
@@ -145,7 +145,7 @@ static void rna_def_image(BlenderRNA *brna)
prop= RNA_def_property(srna, "premultiply", PROP_BOOLEAN, PROP_NONE);
RNA_def_property_boolean_sdna(prop, NULL, "flag", IMA_DO_PREMUL);
- RNA_def_property_ui_text(prop, "Premultiply", "Convert from key alpha to premultiplied alpha.");
+ RNA_def_property_ui_text(prop, "Premultiply", "Convert RGB from key alpha to premultiplied alpha.");
/* generated image (image_generated_change_cb) */
prop= RNA_def_property(srna, "generated_type", PROP_ENUM, PROP_NONE);