Skip to content

Commit

Permalink
Fix/transforms visibility conditions (#178)
Browse files Browse the repository at this point in the history
* (fix) Visibility Conditions are enabled for Emptys
  • Loading branch information
ssnd292 authored Sep 20, 2023
1 parent 8ab1acf commit 92e14fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion addon/i3dio/ui/object.py
Original file line number Diff line number Diff line change
Expand Up @@ -508,7 +508,7 @@ class I3D_IO_PT_visibility_condition_attributes(Panel):

@classmethod
def poll(cls, context):
return context.object is not None and context.object.type == 'MESH'
return context.object is not None

def draw(self, context):
layout = self.layout
Expand Down

0 comments on commit 92e14fc

Please sign in to comment.