UI: Use 'None' instead of 'No' for cache compression method.

This commit is contained in:
Pablo Vazquez 2019-03-11 16:35:17 +01:00
parent 251c3e9a81
commit 17f4fe05fc
1 changed files with 1 additions and 1 deletions

View File

@ -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},