diff options
| author | Dan Halbert <halbert@adafruit.com> | 2019-09-04 15:48:00 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-09-04 15:48:00 -0400 |
| commit | fca440fb66aff746b0a2c752df15c445ba421fdf (patch) | |
| tree | 1d6ede88cbfb246cdb8a14afa263c2c9e2bded95 /supervisor | |
| parent | 321b57a5d2a85f56ba198c8ff678e123dfe08c4c (diff) | |
| parent | 7951646b9afbb333048730ad7660ee34685e8add (diff) | |
Merge pull request #2113 from tannewt/displayio_hidden5.0.0-alpha.2
Add .hidden to TileGrid and Group
Diffstat (limited to 'supervisor')
| -rw-r--r-- | supervisor/shared/display.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/supervisor/shared/display.c b/supervisor/shared/display.c index 586b6f8be..c6fda0f16 100644 --- a/supervisor/shared/display.c +++ b/supervisor/shared/display.c @@ -222,7 +222,8 @@ displayio_tilegrid_t blinka_sprite = { .tiles = 0, .partial_change = false, .full_change = false, - .first_draw = true, + .hidden = false, + .hidden_by_parent = false, .moved = false, .inline_tiles = true, .in_group = true @@ -242,5 +243,7 @@ displayio_group_t circuitpython_splash = { .max_size = 2, .children = splash_children, .item_removed = false, - .in_group = false + .in_group = false, + .hidden = false, + .hidden_by_parent = false }; |
