From c363a52feed6dbd20af08fc59e9f74c51b558380 Mon Sep 17 00:00:00 2001 From: mifth <paulgeraskin@gmail.com> Date: Sat, 29 Mar 2014 15:42:44 +0400 Subject: [PATCH] [UV Utility] fixes for the addon. --- uv_utility.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/uv_utility.py b/uv_utility.py index 46f3125f..79b8a82d 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" -- GitLab