Browse Source

Patch from Jordan Crouse to avoid potential rendering problems

Eric Andersen 22 years ago
parent
commit
83ea9cd4cf
1 changed files with 1 additions and 1 deletions
  1. 1 1
      extra/config/menubox.c

+ 1 - 1
extra/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);
     }
 }