diff --git a/uv_utility.py b/uv_utility.py index 46f3125ff37af222581a0a08dfeffd6c21a52acb..79b8a82d415a77b77fd4860ba631ab93218257de 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"