Avoid potential rendering problems
authorEric Andersen <andersen@codepoet.org>
Mon, 10 Mar 2003 17:21:46 +0000 (17:21 -0000)
committerEric Andersen <andersen@codepoet.org>
Mon, 10 Mar 2003 17:21:46 +0000 (17:21 -0000)
scripts/config/menubox.c

index 5be3d5611580599f59db10a96f692e1ce7f7ab3b..18e02168bf406a6ea549bf2cea9ae02777c7c7dd 100644 (file)
@@ -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);
     }
 }