[Bf-blender-cvs] [17f4fe05fc1] master: UI: Use 'None' instead of 'No' for cache compression method.

Pablo Vazquez noreply at git.blender.org
Mon Mar 11 16:36:35 CET 2019


Commit: 17f4fe05fc116bddfbaffb27c61ced08dbc161ea
Author: Pablo Vazquez
Date:   Mon Mar 11 16:35:17 2019 +0100
Branches: master
https://developer.blender.org/rB17f4fe05fc116bddfbaffb27c61ced08dbc161ea

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

===================================================================

M	source/blender/makesrna/intern/rna_object_force.c

===================================================================

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



More information about the Bf-blender-cvs mailing list