Skip to content
Snippets Groups Projects
Commit 870f1e9a authored by Campbell Barton's avatar Campbell Barton
Browse files

correct error in rigify, fix from Irie Shinsuke.

parent af733e2d
No related branches found
No related tags found
No related merge requests found
......@@ -203,7 +203,7 @@ class VIEW3D_PT_tools_rigify_dev(bpy.types.Panel):
@classmethod
def poll(cls, context):
return obj.mode == 'EDIT_ARMATURE'
return (context.mode == 'EDIT_ARMATURE')
def draw(self, context):
r = self.layout.row()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment