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:
authorDaniel Salazar <zanqdo@gmail.com>2010-02-11 04:11:52 +0300
committerDaniel Salazar <zanqdo@gmail.com>2010-02-11 04:11:52 +0300
commit78faeb73b81d9eb6fe1f02e6fb6a0585a4ecf021 (patch)
treeef5f97ab2ffbe2716e2d1ca94efda3a5d93db597 /source/blender/makesrna/intern/rna_sequencer.c
parent367037b445902070fcdd05850b859eb683d5c693 (diff)
Operation Dot-Kill finished
Diffstat (limited to 'source/blender/makesrna/intern/rna_sequencer.c')
-rw-r--r--source/blender/makesrna/intern/rna_sequencer.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/makesrna/intern/rna_sequencer.c b/source/blender/makesrna/intern/rna_sequencer.c
index 41eb400d8ac..9aa009fab3b 100644
--- a/source/blender/makesrna/intern/rna_sequencer.c
+++ b/source/blender/makesrna/intern/rna_sequencer.c
@@ -1103,9 +1103,9 @@ static void rna_def_transform(BlenderRNA *brna)
PropertyRNA *prop;
static const EnumPropertyItem interpolation_items[]= {
- {0, "NONE", 0, "None", "No interpolation."},
- {1, "BILINEAR", 0, "Bilinear", "Bilinear interpolation."},
- {2, "BICUBIC", 0, "Bicubic", "Bicubic interpolation."},
+ {0, "NONE", 0, "None", "No interpolation"},
+ {1, "BILINEAR", 0, "Bilinear", "Bilinear interpolation"},
+ {2, "BICUBIC", 0, "Bicubic", "Bicubic interpolation"},
{0, NULL, 0, NULL, NULL}
};