Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSybren A. Stüvel <sybren@stuvel.eu>2018-03-27 13:45:13 +0300
committerSybren A. Stüvel <sybren@stuvel.eu>2018-03-27 13:45:17 +0300
commitfad17c652d498187f1277ee8e9d14c2b2a9ba1a4 (patch)
tree413806eb2c21e2eeaf80bc3987ea549cb090882e /bone_selection_sets.py
parentf0c312e6f2d4036cc4e61514f2397806cfa778db (diff)
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.
Diffstat (limited to 'bone_selection_sets.py')
-rw-r--r--bone_selection_sets.py4
1 files changed, 2 insertions, 2 deletions
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,