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 <venomgfx@gmail.com>2019-02-04 03:45:53 +0300
committerPablo Vazquez <venomgfx@gmail.com>2019-02-04 03:45:53 +0300
commite6a917cd4e94841b72a9a7b4fb777fa00a37d2f9 (patch)
treef40be5ba67ff5d50ed78746610029069a692d9a9
parent3be845ce20f6101838eeda7c15abf027f0c1a0f6 (diff)
UI: Use 'None' label instead of 'No' for Physics Type
Matches other enums in particle settings and pretty much all over Blender.
-rw-r--r--source/blender/makesrna/intern/rna_particle.c2
1 files changed, 1 insertions, 1 deletions
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", ""},