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>2017-09-02 12:33:06 +0300
committerCampbell Barton <ideasman42@gmail.com>2017-09-02 12:33:06 +0300
commit131ea02a4c0cc0c245c39488113fbe4b433afdee (patch)
treef2d2bce6cebee2f3e6673e5a8205d7ad8e91f2bf /bone_selection_sets.py
parentf4d6aad738ae8b368841aee77e0008480fe42f25 (diff)
Cleanup: quiet strict name warnings for addons a..h.
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 bd7b26c0..46aa7f25 100644
--- a/bone_selection_sets.py
+++ b/bone_selection_sets.py
@@ -129,7 +129,7 @@ class POSE_UL_selection_set(UIList):
class POSE_MT_create_new_selection_set(Menu):
- bl_idname = "pose.selection_set_create_new_popup"
+ bl_idname = "POSE_MT_selection_set_create"
bl_label = "Choose Selection Set"
def draw(self, context):
@@ -293,7 +293,7 @@ class POSE_OT_selection_set_assign(PluginOperator):
if not (arm.active_selection_set < len(arm.selection_sets)):
bpy.ops.wm.call_menu("INVOKE_DEFAULT",
- name="pose.selection_set_create_new_popup")
+ name="POSE_MT_selection_set_create")
else:
bpy.ops.pose.selection_set_assign('EXEC_DEFAULT')