diff options
| author | Scott Shawcroft <scott@adafruit.com> | 2019-12-20 09:34:25 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-12-20 09:34:25 -0800 |
| commit | 5fc20145d1966e367c2e304a4a3359f625f17bcf (patch) | |
| tree | b1dd2af5d65670d93c38b33884b04faf95d266a8 /supervisor | |
| parent | 663f61cbf38de18c42158027c08f019b858ef337 (diff) | |
| parent | a63da7a6c0e0537cbefaafb724d722f9587b82a2 (diff) | |
Merge pull request #2390 from jepler/displayio-set-rotation
displayio: make 'rotation' property settable
Diffstat (limited to 'supervisor')
| -rw-r--r-- | supervisor/shared/display.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/supervisor/shared/display.c b/supervisor/shared/display.c index c6fda0f16..855432d64 100644 --- a/supervisor/shared/display.c +++ b/supervisor/shared/display.c @@ -81,6 +81,7 @@ void supervisor_start_terminal(uint16_t width_px, uint16_t height_px) { grid->pixel_width = width_in_tiles * grid->tile_width; grid->pixel_height = height_in_tiles * grid->tile_height; grid->tiles = tiles; + grid->full_change = true; common_hal_terminalio_terminal_construct(&supervisor_terminal, grid, &supervisor_terminal_font); } |
