[Bf-blender-cvs] [bbb3500c971] master: UI: Use Plural Panel Names

Aaron Carlisle noreply at git.blender.org
Sun Jun 30 21:51:09 CEST 2019


Commit: bbb3500c97167c070a76373e023bdd8820d3ca41
Author: Aaron Carlisle
Date:   Sun Jun 30 12:49:49 2019 -0400
Branches: master
https://developer.blender.org/rBbbb3500c97167c070a76373e023bdd8820d3ca41

UI: Use Plural Panel Names

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

M	release/scripts/startup/bl_ui/properties_physics_cloth.py

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

diff --git a/release/scripts/startup/bl_ui/properties_physics_cloth.py b/release/scripts/startup/bl_ui/properties_physics_cloth.py
index b896e5f5408..40f7cfca263 100644
--- a/release/scripts/startup/bl_ui/properties_physics_cloth.py
+++ b/release/scripts/startup/bl_ui/properties_physics_cloth.py
@@ -223,7 +223,7 @@ class PHYSICS_PT_cloth_shape(PhysicButtonsPanel, Panel):
 
 
 class PHYSICS_PT_cloth_collision(PhysicButtonsPanel, Panel):
-    bl_label = "Collision"
+    bl_label = "Collisions"
     bl_parent_id = 'PHYSICS_PT_cloth'
     bl_options = {'DEFAULT_CLOSED'}
     COMPAT_ENGINES = {'BLENDER_RENDER', 'BLENDER_EEVEE', 'BLENDER_WORKBENCH'}
@@ -244,7 +244,7 @@ class PHYSICS_PT_cloth_collision(PhysicButtonsPanel, Panel):
 
 
 class PHYSICS_PT_cloth_object_collision(PhysicButtonsPanel, Panel):
-    bl_label = "Object Collision"
+    bl_label = "Object Collisions"
     bl_parent_id = 'PHYSICS_PT_cloth_collision'
     COMPAT_ENGINES = {'BLENDER_RENDER', 'BLENDER_EEVEE', 'BLENDER_WORKBENCH'}
 
@@ -276,7 +276,7 @@ class PHYSICS_PT_cloth_object_collision(PhysicButtonsPanel, Panel):
 
 
 class PHYSICS_PT_cloth_self_collision(PhysicButtonsPanel, Panel):
-    bl_label = "Self Collision"
+    bl_label = "Self Collisions"
     bl_parent_id = 'PHYSICS_PT_cloth_collision'
     COMPAT_ENGINES = {'BLENDER_RENDER', 'BLENDER_EEVEE', 'BLENDER_WORKBENCH'}



More information about the Bf-blender-cvs mailing list