From: Eric Andersen Date: Mon, 10 Mar 2003 17:21:46 +0000 (-0000) Subject: Avoid potential rendering problems X-Git-Tag: 1_00_pre1~161 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=e68afefe564adbe2896e86aa4bae1617501b6193;p=oweals%2Fbusybox.git Avoid potential rendering problems --- diff --git a/scripts/config/menubox.c b/scripts/config/menubox.c index 5be3d5611..18e02168b 100644 --- a/scripts/config/menubox.c +++ b/scripts/config/menubox.c @@ -93,7 +93,7 @@ print_item (WINDOW * win, const char *item, int choice, int selected, int hotkey } if (selected) { wmove (win, choice, item_x+1); - wnoutrefresh (win); + wrefresh (win); } }