@@ -71,19 +71,19 @@ void common_hal_displayio_group_set_hidden(displayio_group_t *self, bool hidden)
71
71
}
72
72
#if CIRCUITPY_VECTORIO
73
73
layer = mp_obj_cast_to_native_base (
74
- self -> members -> items [i ], & vectorio_circle_type );
74
+ self -> members -> items [i ], & vectorio_circle_type );
75
75
if (layer != MP_OBJ_NULL ) {
76
76
common_hal_vectorio_vector_shape_set_dirty (common_hal_vectorio_circle_get_draw_protocol (layer ));
77
77
continue ;
78
78
}
79
79
layer = mp_obj_cast_to_native_base (
80
- self -> members -> items [i ], & vectorio_rectangle_type );
80
+ self -> members -> items [i ], & vectorio_rectangle_type );
81
81
if (layer != MP_OBJ_NULL ) {
82
82
common_hal_vectorio_vector_shape_set_dirty (common_hal_vectorio_rectangle_get_draw_protocol (layer ));
83
83
continue ;
84
84
}
85
85
layer = mp_obj_cast_to_native_base (
86
- self -> members -> items [i ], & vectorio_polygon_type );
86
+ self -> members -> items [i ], & vectorio_polygon_type );
87
87
if (layer != MP_OBJ_NULL ) {
88
88
common_hal_vectorio_vector_shape_set_dirty (common_hal_vectorio_polygon_get_draw_protocol (layer ));
89
89
continue ;
@@ -381,7 +381,7 @@ void displayio_group_construct(displayio_group_t *self, mp_obj_list_t *members,
381
381
bool displayio_group_fill_area (displayio_group_t * self , const _displayio_colorspace_t * colorspace , const displayio_area_t * area , uint32_t * mask , uint32_t * buffer ) {
382
382
// Track if any of the layers finishes filling in the given area. We can ignore any remaining
383
383
// layers at that point.
384
- if (self -> hidden == false){
384
+ if (self -> hidden == false) {
385
385
for (int32_t i = self -> members -> len - 1 ; i >= 0 ; i -- ) {
386
386
mp_obj_t layer ;
387
387
#if CIRCUITPY_VECTORIO
0 commit comments