Fix clearing the last line in setup on function bar change (thanks cgzones)

This commit is contained in:
Daniel Lange 2021-01-11 13:47:33 +01:00
parent 1ffe5d79bd
commit 2ba8a81d47
1 changed files with 1 additions and 1 deletions

View File

@ -124,7 +124,7 @@ static void ScreenManager_drawPanels(ScreenManager* this, int focus, bool force_
for (int i = 0; i < nPanels; i++) {
Panel* panel = (Panel*) Vector_get(this->panels, i);
Panel_draw(panel, force_redraw, i == focus, !((panel == this->state->panel) && this->state->hideProcessSelection), State_hideFunctionBar(this->state));
mvvline(panel->y, panel->x + panel->w, ' ', panel->h);
mvvline(panel->y, panel->x + panel->w, ' ', panel->h + (State_hideFunctionBar(this->state) ? 1 : 0));
}
}