From e6a917cd4e94841b72a9a7b4fb777fa00a37d2f9 Mon Sep 17 00:00:00 2001 From: Pablo Vazquez Date: Mon, 4 Feb 2019 01:45:53 +0100 Subject: UI: Use 'None' label instead of 'No' for Physics Type Matches other enums in particle settings and pretty much all over Blender. --- source/blender/makesrna/intern/rna_particle.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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", ""}, -- cgit v1.2.3