Sets all cells dirty on reactivation
This commit is contained in:
parent
acbda2bcf2
commit
76d8beb378
@ -98,6 +98,9 @@ There ist still quite some work to do.
|
||||
And for all others, don't hesitate to open issues when you have problems!
|
||||
|
||||
## Changelog
|
||||
#### 1.0.6
|
||||
- Fixes reactivation not redrawing all cells
|
||||
|
||||
#### 1.0.5
|
||||
- Fixes black lines in the display between some cell lines/columns
|
||||
|
||||
|
@ -95,6 +95,7 @@ class CellularAutomaton(CellularAutomatonCreator, abc.ABC):
|
||||
""" Sets all cells active again """
|
||||
for cell in self._current_state.values():
|
||||
cell.is_active = True
|
||||
cell.is_dirty = True
|
||||
|
||||
active = property(is_active)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user