Skip to content

Commit

Permalink
Stash
Browse files Browse the repository at this point in the history
  • Loading branch information
jinglemansweep committed Nov 21, 2023
1 parent 9314db9 commit cc959e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wideboy/sprites/tile_grid/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ def state(self):

@property
def animating(self):
return self.range[0] < self.value < self.range[1]
return self.value != self.range[0] and self.value != self.range[1]

def toggle(self):
self.open = not self.open
Expand Down

0 comments on commit cc959e4

Please sign in to comment.