From fad17c652d498187f1277ee8e9d14c2b2a9ba1a4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sybren=20A=2E=20St=C3=BCvel?= <sybren@stuvel.eu> Date: Tue, 27 Mar 2018 12:45:13 +0200 Subject: [PATCH] Bone Selection Sets: correctly named POSE_MT_selection_set_create This name was used before, and is still referenced in the POSE_OT_selection_set_assign operator. --- bone_selection_sets.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bone_selection_sets.py b/bone_selection_sets.py index b08201a7b..32ca81c14 100644 --- a/bone_selection_sets.py +++ b/bone_selection_sets.py @@ -130,7 +130,7 @@ class POSE_UL_selection_set(UIList): layout.prop(set, "name", text="", icon='GROUP_BONE', emboss=False) -class POSE_MT_create_new_selection_set(Menu): +class POSE_MT_selection_set_create(Menu): bl_label = "Choose Selection Set" def draw(self, context): @@ -419,7 +419,7 @@ class POSE_OT_selection_set_paste(PluginOperator): # Registry #################################################################### classes = ( - POSE_MT_create_new_selection_set, + POSE_MT_selection_set_create, POSE_MT_selection_sets_specials, POSE_MT_selection_sets, POSE_PT_selection_sets, -- GitLab