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 b160378 commit 87fc5efCopy full SHA for 87fc5ef
shared-module/displayio/EPaperDisplay.c
@@ -139,7 +139,8 @@ STATIC const displayio_area_t *displayio_epaperdisplay_get_refresh_areas(display
139
if (self->core.current_group != NULL) {
140
first_area = displayio_group_get_refresh_areas(self->core.current_group, NULL);
141
}
142
- if (first_area != NULL) {
+ if (first_area != NULL && self->core.row_command == NO_COMMAND) {
143
+ // Do a full refresh if the display doesn't support partial updates.
144
self->core.area.next = NULL;
145
return &self->core.area;
146
0 commit comments