Skip to content

Commit

Permalink
Fixed horizontal collapser bug
Browse files Browse the repository at this point in the history
  • Loading branch information
jinglemansweep committed Nov 19, 2023
1 parent c015b09 commit 548d046
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion testing/sprites/lib/tile_grid.py
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ def update(self):

@property
def open(self):
return any([cell.open for cell in self.cells])
return any([cell.open for cell in self.cells_inst])

def __repr__(self):
return f"HorizontalCollapseTileGridColumn(open={self.open}, width={self.width_animator.value}, cells={len(self.cells)})"

0 comments on commit 548d046

Please sign in to comment.