Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEugenio Pignataro <info@oscurart.com.ar>2017-12-14 16:23:03 +0300
committerEugenio Pignataro <info@oscurart.com.ar>2017-12-14 16:23:03 +0300
commit512687f54e26dc4cde5cf94455df3e395c23cae2 (patch)
tree93ef5fcadc506b015cb7ff91ea3aa831f87d6043 /oscurart_tools/__init__.py
parent36190021e9293d647aeb5171dd16e668845199e6 (diff)
Now edit MultiMesh support rotation scale location, and code cleanup
Diffstat (limited to 'oscurart_tools/__init__.py')
-rw-r--r--oscurart_tools/__init__.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/oscurart_tools/__init__.py b/oscurart_tools/__init__.py
index de285c15..8affc8bb 100644
--- a/oscurart_tools/__init__.py
+++ b/oscurart_tools/__init__.py
@@ -205,11 +205,11 @@ class OscPanelMesh(Panel):
colrow = col.row(align=1)
colrow.operator("lattice.mirror_selected", icon="LATTICE_DATA")
colrow = col.row(align=1)
- colrow.label(text="Multimesh")
+ colrow.label(text="Edit Multimesh")
colrow.prop_search(scene, "multimeshedit", bpy.data, "groups", text="")
colrow = col.row(align=1)
- colrow.operator("mesh.create_edit_multimesh", icon="IMPORT")
- colrow.operator("mesh.apply_edit_multimesh", icon="EXPORT")
+ colrow.operator("mesh.create_edit_multimesh", icon="IMPORT", text= "StartEdit")
+ colrow.operator("mesh.apply_edit_multimesh", icon="EXPORT", text="FinishEdit")
class OscPanelShapes(Panel):
bl_idname = "Oscurart Shapes Tools"