diff options
| author | Scott Shawcroft <scott@tannewt.org> | 2019-02-15 14:29:59 -0800 |
|---|---|---|
| committer | Scott Shawcroft <scott@tannewt.org> | 2019-02-15 14:29:59 -0800 |
| commit | c9f036ed405f8e5ddf34dd2e15ad4074a270c3c4 (patch) | |
| tree | 668514771db77cbe983e3b4860c441cc5e5f684b /supervisor | |
| parent | 35e3d99f62f908f6f371667b13120e20edb1142f (diff) | |
Store the original layer in Group
As is we would return the native superclass object only.
Fixes #1551
Diffstat (limited to 'supervisor')
| -rw-r--r-- | supervisor/shared/display.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/supervisor/shared/display.c b/supervisor/shared/display.c index 679354473..e1400426e 100644 --- a/supervisor/shared/display.c +++ b/supervisor/shared/display.c @@ -172,9 +172,9 @@ displayio_tilegrid_t blinka_sprite = { .inline_tiles = true }; -mp_obj_t splash_children[2] = { - &blinka_sprite, - &supervisor_terminal_text_grid +displayio_group_child_t splash_children[2] = { + {&blinka_sprite, &blinka_sprite}, + {&supervisor_terminal_text_grid, &supervisor_terminal_text_grid} }; displayio_group_t circuitpython_splash = { |
