call Window::Refresh() in Window::Clear() explicitly
call to Window::Clear() from Menu object was calling Menu::Refresh() instead of Window::Refresh(), so make an explicit call to this method.
This commit is contained in:
@@ -279,7 +279,7 @@ void Window::Refresh()
|
||||
void Window::Clear(bool)
|
||||
{
|
||||
werase(itsWindow);
|
||||
Refresh();
|
||||
Window::Refresh();
|
||||
}
|
||||
|
||||
void Window::Hide(char x) const
|
||||
|
||||
Reference in New Issue
Block a user