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:
authorPablo Vazquez <contact@pablovazquez.art>2019-03-11 18:35:17 +0300
committerPablo Vazquez <contact@pablovazquez.art>2019-03-11 18:35:58 +0300
commit17f4fe05fc116bddfbaffb27c61ced08dbc161ea (patch)
tree6a6d97df742eedc5a1eb9f9223475cc0e6ca71b8 /source/blender/makesrna/intern/rna_object_force.c
parent251c3e9a811d839ab39baae1a84a66c2a6ce102b (diff)
UI: Use 'None' instead of 'No' for cache compression method.
Diffstat (limited to 'source/blender/makesrna/intern/rna_object_force.c')
-rw-r--r--source/blender/makesrna/intern/rna_object_force.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_object_force.c b/source/blender/makesrna/intern/rna_object_force.c
index a6cfc56706f..90f6ac92d6b 100644
--- a/source/blender/makesrna/intern/rna_object_force.c
+++ b/source/blender/makesrna/intern/rna_object_force.c
@@ -721,7 +721,7 @@ static void rna_def_pointcache_common(StructRNA *srna)
PropertyRNA *prop;
static const EnumPropertyItem point_cache_compress_items[] = {
- {PTCACHE_COMPRESS_NO, "NO", 0, "No", "No compression"},
+ {PTCACHE_COMPRESS_NO, "NO", 0, "None", "No compression"},
{PTCACHE_COMPRESS_LZO, "LIGHT", 0, "Light", "Fast but not so effective compression"},
{PTCACHE_COMPRESS_LZMA, "HEAVY", 0, "Heavy", "Effective but slow compression"},
{0, NULL, 0, NULL, NULL},