From: Andy P. <at...@us...> - 2002-04-09 16:38:55
|
Update of /cvsroot/linux-vax/kernel-2.4/scripts/lxdialog In directory usw-pr-cvs1:/tmp/cvs-serv4925/lxdialog Modified Files: checklist.c Log Message: synch 2.4.15 commit 26 Index: checklist.c =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.4/scripts/lxdialog/checklist.c,v retrieving revision 1.1.1.2 retrieving revision 1.2 diff -u -r1.1.1.2 -r1.2 --- checklist.c 25 Feb 2001 23:15:23 -0000 1.1.1.2 +++ checklist.c 9 Apr 2002 16:38:51 -0000 1.2 @@ -211,13 +211,15 @@ status[i+scroll], i, i == choice); } - wnoutrefresh (list); - print_arrows(dialog, choice, item_no, scroll, box_y, box_x + check_x + 5, list_height); print_buttons(dialog, height, width, 0); + wnoutrefresh (list); + wnoutrefresh (dialog); + doupdate (); + while (key != ESC) { key = wgetch (dialog); @@ -355,7 +357,11 @@ case ESC: break; } + + /* Now, update everything... */ + doupdate (); } + delwin (dialog); free (status); |