Ensure we repaint the background of windows before redrawing them. This

fixes some issues with incomplete background colors on some operating
system / ncurses combinations (e.g. FreeBSD)
This commit is contained in:
casey langen 2021-01-17 22:56:58 -08:00
parent 8e72d1ba09
commit a64a7c97b9

View File

@ -419,6 +419,7 @@ void Window::Redraw() {
}
if (this->frame) {
this->RepaintBackground();
this->OnRedraw();
this->Invalidate();
this->isDirty = false;