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.
2 parents 8754b8e + 3120bd3 commit 7f68036Copy full SHA for 7f68036
supervisor/shared/display.c
@@ -128,10 +128,8 @@ void supervisor_start_terminal(uint16_t width_px, uint16_t height_px) {
128
status_bar->full_change = true;
129
130
scroll_area->width_in_tiles = width_in_tiles;
131
- scroll_area->height_in_tiles = height_in_tiles;
132
- #if CIRCUITPY_REPL_LOGO
133
- scroll_area->height_in_tiles -= 1;
134
- #endif
+ // Leave space for the status bar, no matter if we have logo or not.
+ scroll_area->height_in_tiles = height_in_tiles - 1;
135
scroll_area->pixel_width = scroll_area->width_in_tiles * scroll_area->tile_width;
136
scroll_area->pixel_height = scroll_area->height_in_tiles * scroll_area->tile_height;
137
// Right align the scroll area to give margin to the start of each line.
0 commit comments