From b2b015a396372e39a7035f394f06405b68423fed Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Tue, 12 Mar 2019 11:05:44 +1100 Subject: Update for changes to Blender --- bone_selection_sets.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'bone_selection_sets.py') diff --git a/bone_selection_sets.py b/bone_selection_sets.py index e91d5557..0278bd23 100644 --- a/bone_selection_sets.py +++ b/bone_selection_sets.py @@ -62,7 +62,7 @@ class SelectionSet(PropertyGroup): # UI Panel w/ UIList ########################################################## -class POSE_MT_selection_sets_specials(Menu): +class POSE_MT_selection_sets_context_menu(Menu): bl_label = "Selection Sets Specials" def draw(self, context): @@ -107,7 +107,7 @@ class POSE_PT_selection_sets(Panel): col = row.column(align=True) col.operator("pose.selection_set_add", icon='ADD', text="") col.operator("pose.selection_set_remove", icon='REMOVE', text="") - col.menu("POSE_MT_selection_sets_specials", icon='DOWNARROW_HLT', text="") + col.menu("POSE_MT_selection_sets_context_menu", icon='DOWNARROW_HLT', text="") # move up/down arrows if len(arm.selection_sets) > 0: @@ -512,7 +512,7 @@ def uniqify(name: str, other_names: list) -> str: classes = ( POSE_MT_selection_set_create, - POSE_MT_selection_sets_specials, + POSE_MT_selection_sets_context_menu, POSE_MT_selection_sets_select, POSE_PT_selection_sets, POSE_UL_selection_set, -- cgit v1.2.3