[Bf-blender-cvs] [e6a917cd4e9] master: UI: Use 'None' label instead of 'No' for Physics Type

Pablo Vazquez noreply at git.blender.org
Mon Feb 4 01:49:00 CET 2019


Commit: e6a917cd4e94841b72a9a7b4fb777fa00a37d2f9
Author: Pablo Vazquez
Date:   Mon Feb 4 01:45:53 2019 +0100
Branches: master
https://developer.blender.org/rBe6a917cd4e94841b72a9a7b4fb777fa00a37d2f9

UI: Use 'None' label instead of 'No' for Physics Type

Matches other enums in particle settings and pretty much all over Blender.

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

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

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

diff --git a/source/blender/makesrna/intern/rna_particle.c b/source/blender/makesrna/intern/rna_particle.c
index a1b8e359997..e0dd546c374 100644
--- a/source/blender/makesrna/intern/rna_particle.c
+++ b/source/blender/makesrna/intern/rna_particle.c
@@ -1995,7 +1995,7 @@ static void rna_def_particle_settings(BlenderRNA *brna)
 	};
 
 	static const EnumPropertyItem phys_type_items[] = {
-		{PART_PHYS_NO, "NO", 0, "No", ""},
+		{PART_PHYS_NO, "NO", 0, "None", ""},
 		{PART_PHYS_NEWTON, "NEWTON", 0, "Newtonian", ""},
 		{PART_PHYS_KEYED, "KEYED", 0, "Keyed", ""},
 		{PART_PHYS_BOIDS, "BOIDS", 0, "Boids", ""},



More information about the Bf-blender-cvs mailing list