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.
master
Andrzej Rybczak 17 years ago
parent 3b32d84a76
commit 735cae628a
  1. 2
      src/window.cpp

@ -279,7 +279,7 @@ void Window::Refresh()
void Window::Clear(bool)
{
werase(itsWindow);
Refresh();
Window::Refresh();
}
void Window::Hide(char x) const

Loading…
Cancel
Save