X-Git-Url: https://git.ayoreis.com/hackapet/Adafruit_Blinka_Displayio.git/blobdiff_plain/0f5275493fb90428590dffcf8b271d1f0e540b1f..HEAD:/vectorio/_vectorshape.py diff --git a/vectorio/_vectorshape.py b/vectorio/_vectorshape.py index 999f82e..735e5ae 100644 --- a/vectorio/_vectorshape.py +++ b/vectorio/_vectorshape.py @@ -122,14 +122,12 @@ class _VectorShape: self._get_screen_area(current_area) moved = current_area != self._current_area if moved: - # This will add _current_area (the old position) to dirty area + # This will add _current_area (the old position) to dirty area self._current_area.union( self._ephemeral_dirty_area, self._ephemeral_dirty_area ) # This will add the new position to the dirty area - current_area.union( - self._ephemeral_dirty_area, self._ephemeral_dirty_area - ) + current_area.union(self._ephemeral_dirty_area, self._ephemeral_dirty_area) # Dirty area tracks the shape's footprint between draws. It's reset on refresh finish. current_area.copy_into(self._current_area) self._current_area_dirty = True