aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2003-03-10 17:21:46 +0000
committerandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2003-03-10 17:21:46 +0000
commit92715cc8208e50cea47730a14c008ec1baaaa7b5 (patch)
tree5b47f7393df9eea4dd500c913b80a81f187f46a6
parenteb0908cc088d21707c1deaf4cb3f370fdf34c5bd (diff)
downloadbusybox-w32-92715cc8208e50cea47730a14c008ec1baaaa7b5.tar.gz
busybox-w32-92715cc8208e50cea47730a14c008ec1baaaa7b5.tar.bz2
busybox-w32-92715cc8208e50cea47730a14c008ec1baaaa7b5.zip
Avoid potential rendering problems
git-svn-id: svn://busybox.net/trunk/busybox@6730 69ca8d6d-28ef-0310-b511-8ec308f3f277
-rw-r--r--scripts/config/menubox.c2
1 files changed, 1 insertions, 1 deletions
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
93 } 93 }
94 if (selected) { 94 if (selected) {
95 wmove (win, choice, item_x+1); 95 wmove (win, choice, item_x+1);
96 wnoutrefresh (win); 96 wrefresh (win);
97 } 97 }
98} 98}
99 99