Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2003-03-10 20:21:46 +0300
committerEric Andersen <andersen@codepoet.org>2003-03-10 20:21:46 +0300
commite68afefe564adbe2896e86aa4bae1617501b6193 (patch)
tree5b47f7393df9eea4dd500c913b80a81f187f46a6 /scripts
parent4157a8a71e2db9968690f430a5775f0790e88297 (diff)
Avoid potential rendering problems
Diffstat (limited to 'scripts')
-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
}
if (selected) {
wmove (win, choice, item_x+1);
- wnoutrefresh (win);
+ wrefresh (win);
}
}