Skip to content
Snippets Groups Projects
Commit c363a52f authored by mifth's avatar mifth
Browse files

[UV Utility] fixes for the addon.

parent 7f01dca9
No related branches found
No related tags found
No related merge requests found
......@@ -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"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment