use ncurses pad instead of ncurses window by default

This commit is contained in:
Andrzej Rybczak
2009-02-18 21:45:54 +01:00
parent b210d3f270
commit c827c88993
8 changed files with 27 additions and 69 deletions

View File

@@ -159,7 +159,8 @@ void PlaylistEditor::Update()
if (Content->Empty())
{
*Content << XY(0, 0) << "Playlist is empty." << wrefresh;
*Content << XY(0, 0) << "Playlist is empty.";
Content->Window::Refresh();
}
}