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:
authorCampbell Barton <ideasman42@gmail.com>2019-03-12 03:05:44 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-03-12 03:05:44 +0300
commitb2b015a396372e39a7035f394f06405b68423fed (patch)
treed198df235a4a2156a2b869218e7238e16e857838 /bone_selection_sets.py
parentc7f6ef3fef1315e97fd7326c08b7c7ad7b82762a (diff)
Update for changes to Blender
Diffstat (limited to 'bone_selection_sets.py')
-rw-r--r--bone_selection_sets.py6
1 files changed, 3 insertions, 3 deletions
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,