Changeset View
Changeset View
Standalone View
Standalone View
mesh_inset/__init__.py
| Context not available. | |||||
| @classmethod | @classmethod | ||||
| def poll(cls, context): | def poll(cls, context): | ||||
| obj = context.active_object | obj = context.active_object | ||||
| return (obj and obj.type == 'MESH' and context.mode == 'EDIT_MESH') | return obj and obj.type == 'MESH' and context.mode == 'EDIT_MESH' | ||||
| def draw(self, context): | def draw(self, context): | ||||
| layout = self.layout | layout = self.layout | ||||
| Context not available. | |||||