diff --git a/ScreenManager.c b/ScreenManager.c index 51951a84..0ab5231b 100644 --- a/ScreenManager.c +++ b/ScreenManager.c @@ -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)); } }