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:
authorSv. Lockal <lockalsash@gmail.com>2014-03-27 07:15:08 +0400
committerSv. Lockal <lockalsash@gmail.com>2014-03-27 07:15:08 +0400
commit7397ef8666270d11025ff347ab95f23bed7e04db (patch)
treebe8826afad64b36955304fda8a818e3c4147223f /release/scripts/startup/bl_ui/properties_physics_softbody.py
parent5256a5d66ceec9ad647d85e67a4057fa78217269 (diff)
UI: Fix more double ":" in UI labels
Diffstat (limited to 'release/scripts/startup/bl_ui/properties_physics_softbody.py')
-rw-r--r--release/scripts/startup/bl_ui/properties_physics_softbody.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/release/scripts/startup/bl_ui/properties_physics_softbody.py b/release/scripts/startup/bl_ui/properties_physics_softbody.py
index 79d676533a5..17366f59016 100644
--- a/release/scripts/startup/bl_ui/properties_physics_softbody.py
+++ b/release/scripts/startup/bl_ui/properties_physics_softbody.py
@@ -59,7 +59,7 @@ class PHYSICS_PT_softbody(PhysicButtonsPanel, Panel):
col.label(text="Object:")
col.prop(softbody, "friction")
col.prop(softbody, "mass")
- col.prop_search(softbody, "vertex_group_mass", ob, "vertex_groups", text="Mass:")
+ col.prop_search(softbody, "vertex_group_mass", ob, "vertex_groups", text="Mass")
col = split.column()
col.label(text="Simulation:")
@@ -143,7 +143,7 @@ class PHYSICS_PT_softbody_edge(PhysicButtonsPanel, Panel):
col.prop(softbody, "plastic")
col.prop(softbody, "bend")
col.prop(softbody, "spring_length", text="Length")
- col.prop_search(softbody, "vertex_group_spring", ob, "vertex_groups", text="Springs:")
+ col.prop_search(softbody, "vertex_group_spring", ob, "vertex_groups", text="Springs")
col = split.column()
col.prop(softbody, "use_stiff_quads")