We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 653f511 commit d9089f5Copy full SHA for d9089f5
shared-module/displayio/TileGrid.c
@@ -475,7 +475,7 @@ displayio_area_t* displayio_tilegrid_get_refresh_areas(displayio_tilegrid_t *sel
475
if (MP_OBJ_IS_TYPE(self->bitmap, &displayio_bitmap_type)) {
476
displayio_area_t* refresh_area = displayio_bitmap_get_refresh_areas(self->bitmap, tail);
477
if (refresh_area != tail) {
478
- // Special case a TileGrid that shows a full bitmap and use it's
+ // Special case a TileGrid that shows a full bitmap and use its
479
// dirty area. Copy it to ours so we can transform it.
480
if (self->tiles_in_bitmap == 1) {
481
displayio_area_copy(refresh_area, &self->dirty_area);
0 commit comments