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:
authormeta-androcto <meta.androcto1@gmail.com>2017-05-13 13:58:12 +0300
committermeta-androcto <meta.androcto1@gmail.com>2017-05-13 13:58:12 +0300
commitc56129be233e5725e55f87db539b0811103ec40b (patch)
tree90c8f6c8e08b30452af5613dbf877c7aa7cc335a /uv_magic_uv/__init__.py
parent99da32df1a9500e8fe33360a40bd6e0cfbec1363 (diff)
magic uv: update icons
Diffstat (limited to 'uv_magic_uv/__init__.py')
-rw-r--r--uv_magic_uv/__init__.py22
1 files changed, 11 insertions, 11 deletions
diff --git a/uv_magic_uv/__init__.py b/uv_magic_uv/__init__.py
index 86227125..01779333 100644
--- a/uv_magic_uv/__init__.py
+++ b/uv_magic_uv/__init__.py
@@ -81,29 +81,29 @@ import bpy
def view3d_uvmap_menu_fn(self, context):
self.layout.separator()
- self.layout.menu(muv_menu.MUV_CPUVMenu.bl_idname, icon="PLUGIN")
- self.layout.operator(muv_fliprot_ops.MUV_FlipRot.bl_idname, icon="PLUGIN")
- self.layout.menu(muv_menu.MUV_TransUVMenu.bl_idname, icon="PLUGIN")
- self.layout.operator(muv_mvuv_ops.MUV_MVUV.bl_idname, icon="PLUGIN")
- self.layout.menu(muv_menu.MUV_TexLockMenu.bl_idname, icon="PLUGIN")
+ self.layout.menu(muv_menu.MUV_CPUVMenu.bl_idname, icon="IMAGE_COL")
+ self.layout.operator(muv_fliprot_ops.MUV_FlipRot.bl_idname, icon="IMAGE_COL")
+ self.layout.menu(muv_menu.MUV_TransUVMenu.bl_idname, icon="IMAGE_COL")
+ self.layout.operator(muv_mvuv_ops.MUV_MVUV.bl_idname, icon="IMAGE_COL")
+ self.layout.menu(muv_menu.MUV_TexLockMenu.bl_idname, icon="IMAGE_COL")
self.layout.operator(
- muv_mirroruv_ops.MUV_MirrorUV.bl_idname, icon="PLUGIN")
- self.layout.menu(muv_menu.MUV_WSUVMenu.bl_idname, icon="PLUGIN")
+ muv_mirroruv_ops.MUV_MirrorUV.bl_idname, icon="IMAGE_COL")
+ self.layout.menu(muv_menu.MUV_WSUVMenu.bl_idname, icon="IMAGE_COL")
self.layout.operator(
- muv_unwrapconst_ops.MUV_UnwrapConstraint.bl_idname, icon='PLUGIN')
+ muv_unwrapconst_ops.MUV_UnwrapConstraint.bl_idname, icon='IMAGE_COL')
self.layout.menu(
muv_preserve_uv_aspect.MUV_PreserveUVAspectMenu.bl_idname,
- icon='PLUGIN')
+ icon='IMAGE_COL')
def image_uvs_menu_fn(self, context):
self.layout.separator()
- self.layout.operator(muv_packuv_ops.MUV_PackUV.bl_idname, icon="PLUGIN")
+ self.layout.operator(muv_packuv_ops.MUV_PackUV.bl_idname, icon="IMAGE_COL")
def view3d_object_menu_fn(self, context):
self.layout.separator()
- self.layout.menu(muv_menu.MUV_CPUVObjMenu.bl_idname, icon="PLUGIN")
+ self.layout.menu(muv_menu.MUV_CPUVObjMenu.bl_idname, icon="IMAGE_COL")
def register():