From 7b644952c144883da70c400690acb2411c298c06 Mon Sep 17 00:00:00 2001 From: Thomas Beck Date: Wed, 26 Mar 2014 23:27:51 +0100 Subject: UI: Dynamic paint labels had a double ":" at the end of some strings like "Vertex Group::" --- release/scripts/startup/bl_ui/properties_physics_dynamicpaint.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'release') 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: -- cgit v1.2.3