Make "Clone" option in project paint options more clear name

This commit is contained in:
Sergey Sharybin
2013-01-08 13:58:01 +00:00
parent c69f571478
commit 4ed46b4043

View File

@@ -1120,11 +1120,11 @@ class VIEW3D_PT_tools_projectpaint(View3DPanel, Panel):
row.menu("VIEW3D_MT_tools_projectpaint_stencil", text=stencil_text) row.menu("VIEW3D_MT_tools_projectpaint_stencil", text=stencil_text)
row.prop(ipaint, "invert_stencil", text="", icon='IMAGE_ALPHA') row.prop(ipaint, "invert_stencil", text="", icon='IMAGE_ALPHA')
row = layout.row() col = layout.column()
row.active = (settings.brush.image_tool == 'CLONE') col.active = (settings.brush.image_tool == 'CLONE')
row.prop(ipaint, "use_clone_layer", text="Clone") col.prop(ipaint, "use_clone_layer", text="Clone from UV map")
clone_text = mesh.uv_texture_clone.name if mesh.uv_texture_clone else "" clone_text = mesh.uv_texture_clone.name if mesh.uv_texture_clone else ""
row.menu("VIEW3D_MT_tools_projectpaint_clone", text=clone_text) col.menu("VIEW3D_MT_tools_projectpaint_clone", text=clone_text)
layout.prop(ipaint, "seam_bleed") layout.prop(ipaint, "seam_bleed")