[Bf-extensions-cvs] [c363a52] master: [UV Utility] fixes for the addon.

mifth noreply at git.blender.org
Sat Mar 29 12:42:59 CET 2014


Commit: c363a52feed6dbd20af08fc59e9f74c51b558380
Author: mifth
Date:   Sat Mar 29 15:42:44 2014 +0400
https://developer.blender.org/rBACc363a52feed6dbd20af08fc59e9f74c51b558380

[UV Utility] fixes for the addon.

===================================================================

M	uv_utility.py

===================================================================

diff --git a/uv_utility.py b/uv_utility.py
index 46f3125..79b8a82 100644
--- a/uv_utility.py
+++ b/uv_utility.py
@@ -69,7 +69,7 @@ class UV_IC_TexIndex(PropertyGroup):
     )
 
 
-class UV_IC_panel(UV_IC_Panel, Panel):
+class UV_IC_Base(UV_IC_Panel, Panel):
     bl_context = "objectmode"
     bl_label = "UV Utility"
     bl_options = {"DEFAULT_CLOSED"}
@@ -104,7 +104,7 @@ class UV_IC_panel(UV_IC_Panel, Panel):
         col.operator("uvutil.remove_active", text="Remove Active UV")
 
 
-class UV_IC_ChangeIndex(UV_IC_Panel, Operator):
+class UV_IC_ChangeIndex(Operator):
     bl_idname = "uvutil.change_index"
     bl_label = "Change Index"
 
@@ -133,7 +133,7 @@ class UV_IC_ChangeIndex(UV_IC_Panel, Operator):
         return{'FINISHED'}
 
 
-class UV_IC_SelectIndex(UV_IC_Panel, Operator):
+class UV_IC_SelectIndex(Operator):
     bl_idname = "uvutil.select_index"
     bl_label = "Select Index"
 
@@ -154,7 +154,7 @@ class UV_IC_SelectIndex(UV_IC_Panel, Operator):
         return{'FINISHED'}
 
 
-class UV_IC_SelectName(UV_IC_Panel, Operator):
+class UV_IC_SelectName(Operator):
     bl_idname = "uvutil.select_name"
     bl_label = "Select Name"
 
@@ -178,7 +178,7 @@ class UV_IC_SelectName(UV_IC_Panel, Operator):
         return{'FINISHED'}
 
 
-class UV_IC_RemoveActiveUV(UV_IC_Panel, Operator):
+class UV_IC_RemoveActiveUV(Operator):
     bl_idname = "uvutil.remove_active"
     bl_label = "Remove Active UV"



More information about the Bf-extensions-cvs mailing list