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_dynamicpaint.py
parent5256a5d66ceec9ad647d85e67a4057fa78217269 (diff)
UI: Fix more double ":" in UI labels
Diffstat (limited to 'release/scripts/startup/bl_ui/properties_physics_dynamicpaint.py')
-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 c754ce24605..624d9b9fc24 100644
--- a/release/scripts/startup/bl_ui/properties_physics_dynamicpaint.py
+++ b/release/scripts/startup/bl_ui/properties_physics_dynamicpaint.py
@@ -272,7 +272,7 @@ class PHYSICS_PT_dp_canvas_output(PhysicButtonsPanel, Panel):
# image format outputs
if surface.surface_format == 'IMAGE':
layout.operator("dpaint.bake", text="Bake Image Sequence", icon='MOD_DYNAMICPAINT')
- layout.prop_search(surface, "uv_layer", ob.data, "uv_textures", text="UV Map:")
+ layout.prop_search(surface, "uv_layer", ob.data, "uv_textures", text="UV Map")
layout.separator()
layout.prop(surface, "image_output_path", text="")
@@ -332,10 +332,10 @@ class PHYSICS_PT_dp_canvas_initial_color(PhysicButtonsPanel, Panel):
elif surface.init_color_type == 'TEXTURE':
layout.prop(surface, "init_texture")
- layout.prop_search(surface, "init_layername", ob.data, "uv_textures", text="UV Map:")
+ layout.prop_search(surface, "init_layername", ob.data, "uv_textures", text="UV Map")
elif surface.init_color_type == 'VERTEX_COLOR':
- layout.prop_search(surface, "init_layername", ob.data, "vertex_colors", text="Color Layer:")
+ layout.prop_search(surface, "init_layername", ob.data, "vertex_colors", text="Color Layer")
class PHYSICS_PT_dp_effects(PhysicButtonsPanel, Panel):