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:
authorAntony Riakiotakis <kalast@gmail.com>2014-09-22 13:01:50 +0400
committerAntony Riakiotakis <kalast@gmail.com>2014-09-22 13:01:50 +0400
commitd7ddb941a07b806decc867bf58e3ec84d2ec1d41 (patch)
tree94690e31cc65d19530ed182cce6e3217cdd32316 /release/scripts/startup/bl_ui/properties_paint_common.py
parent9b28ab26b4d5624f253efff42b9b61b18f29fe5c (diff)
Projective painting:
* Make clone UI a bit more descriptive * Don't set images to image editors that have a pinned image.
Diffstat (limited to 'release/scripts/startup/bl_ui/properties_paint_common.py')
-rw-r--r--release/scripts/startup/bl_ui/properties_paint_common.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/release/scripts/startup/bl_ui/properties_paint_common.py b/release/scripts/startup/bl_ui/properties_paint_common.py
index 113fee19e2c..81bbc7754a7 100644
--- a/release/scripts/startup/bl_ui/properties_paint_common.py
+++ b/release/scripts/startup/bl_ui/properties_paint_common.py
@@ -170,7 +170,7 @@ def brush_texpaint_common(panel, context, layout, brush, settings, projpaint=Fal
mat = ob.active_material
if mat:
- col.label("Clone Slot")
+ col.label("Source Clone Slot")
col.template_list("TEXTURE_UL_texpaintslots", "",
mat, "texture_paint_images",
mat, "paint_clone_slot", rows=2)
@@ -179,9 +179,9 @@ def brush_texpaint_common(panel, context, layout, brush, settings, projpaint=Fal
mesh = ob.data
clone_text = mesh.uv_texture_clone.name if mesh.uv_texture_clone else ""
- col.label("Image")
+ col.label("Source Clone Image")
col.template_ID(settings, "clone_image")
- col.label("UV Map")
+ col.label("Source Clone UV Map")
col.menu("VIEW3D_MT_tools_projectpaint_clone", text=clone_text, translate=False)
else:
col.prop(brush, "clone_image", text="Image")