[Bf-extensions-cvs] [fad17c65] master: Bone Selection Sets: correctly named POSE_MT_selection_set_create

Sybren A. Stüvel noreply at git.blender.org
Tue Mar 27 12:46:51 CEST 2018


Commit: fad17c652d498187f1277ee8e9d14c2b2a9ba1a4
Author: Sybren A. Stüvel
Date:   Tue Mar 27 12:45:13 2018 +0200
Branches: master
https://developer.blender.org/rBAfad17c652d498187f1277ee8e9d14c2b2a9ba1a4

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.

===================================================================

M	bone_selection_sets.py

===================================================================

diff --git a/bone_selection_sets.py b/bone_selection_sets.py
index b08201a7..32ca81c1 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,



More information about the Bf-extensions-cvs mailing list