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:
authorThomas Beck <software@plasmasolutions.de>2014-03-27 02:27:51 +0400
committerThomas Beck <software@plasmasolutions.de>2014-03-27 02:27:51 +0400
commit7b644952c144883da70c400690acb2411c298c06 (patch)
treefdf2964fbdbe1ff2522cadde9a23bd7e82a1fcab /release
parent0adc1ba209c24a2200c2e42f75e735da0a5f9c2d (diff)
UI: Dynamic paint labels had a double ":" at the end of some strings like "Vertex Group::"
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/properties_physics_dynamicpaint.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/release/scripts/startup/bl_ui/properties_physics_dynamicpaint.py b/release/scripts/startup/bl_ui/properties_physics_dynamicpaint.py
index c0ce8c9fcdd..c754ce24605 100644
--- a/release/scripts/startup/bl_ui/properties_physics_dynamicpaint.py
+++ b/release/scripts/startup/bl_ui/properties_physics_dynamicpaint.py
@@ -241,7 +241,7 @@ class PHYSICS_PT_dp_canvas_output(PhysicButtonsPanel, Panel):
# paint-map output
row = layout.row()
- row.prop_search(surface, "output_name_a", ob.data, "vertex_colors", text="Paintmap layer:")
+ row.prop_search(surface, "output_name_a", ob.data, "vertex_colors", text="Paintmap layer")
if surface.output_exists(object=ob, index=0):
ic = 'ZOOMOUT'
else:
@@ -251,7 +251,7 @@ class PHYSICS_PT_dp_canvas_output(PhysicButtonsPanel, Panel):
# wet-map output
row = layout.row()
- row.prop_search(surface, "output_name_b", ob.data, "vertex_colors", text="Wetmap layer:")
+ row.prop_search(surface, "output_name_b", ob.data, "vertex_colors", text="Wetmap layer")
if surface.output_exists(object=ob, index=1):
ic = 'ZOOMOUT'
else:
@@ -261,7 +261,7 @@ class PHYSICS_PT_dp_canvas_output(PhysicButtonsPanel, Panel):
elif surface_type == 'WEIGHT':
row = layout.row()
- row.prop_search(surface, "output_name_a", ob, "vertex_groups", text="Vertex Group:")
+ row.prop_search(surface, "output_name_a", ob, "vertex_groups", text="Vertex Group")
if surface.output_exists(object=ob, index=0):
ic = 'ZOOMOUT'
else: