summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: f2f695c)
raw | patch | inline | side by side (parent: f2f695c)
author | Max Kellermann <max@duempel.org> | |
Sun, 11 Oct 2009 17:20:55 +0000 (19:20 +0200) | ||
committer | Max Kellermann <max@duempel.org> | |
Sun, 11 Oct 2009 17:20:55 +0000 (19:20 +0200) |
Don't call list_window_paint() manually.
src/screen_help.c | patch | blob | history |
diff --git a/src/screen_help.c b/src/screen_help.c
index 1d83bf77c3ba106644b2447f19b36a37afcca086..54b54f22b66dcba780dc763fa2d1a979186b5393 100644 (file)
--- a/src/screen_help.c
+++ b/src/screen_help.c
help_cmd(G_GNUC_UNUSED struct mpdclient *c, command_t cmd)
{
if (list_window_scroll_cmd(lw, cmd)) {
- list_window_paint(lw, list_callback, NULL);
+ help_paint();
wrefresh(lw->w);
return true;
}
if (screen_find(lw, cmd, list_callback, NULL)) {
/* center the row */
list_window_center(lw, lw->selected);
- list_window_paint(lw, list_callback, NULL);
+ help_paint();
wrefresh(lw->w);
return true;
}