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 60e12c5 commit 8bf94d0Copy full SHA for 8bf94d0
shared-module/displayio/Display.c
@@ -439,7 +439,9 @@ void reset_display(displayio_display_obj_t *self) {
439
circuitpython_splash.x = 0; // reset position in case someone moved it.
440
circuitpython_splash.y = 0;
441
supervisor_start_terminal(self->core.width, self->core.height);
442
- common_hal_displayio_display_set_root_group(self, &circuitpython_splash);
+ if (!circuitpython_splash.in_group) {
443
+ common_hal_displayio_display_set_root_group(self, &circuitpython_splash);
444
+ }
445
}
446
447
void displayio_display_collect_ptrs(displayio_display_obj_t *self) {
0 commit comments