add a note indicating that you can press 'h' for help

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@22306 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Russell Bryant 2006-04-24 19:15:43 +00:00
parent 73e6f89994
commit 72f2bf8135
2 changed files with 2 additions and 1 deletions

View File

@ -978,7 +978,7 @@ uninstall-all: _uninstall
menuselect: build_tools/menuselect makeopts.xml
-@build_tools/menuselect ${GLOBAL_MAKEOPTS} ${USER_MAKEOPTS} menuselect.makeopts && echo "menuselect changes saved!" || echo "menuselect changes NOT saved!"
build_tools/menuselect: build_tools/menuselect.c build_tools/menuselect.h mxml/libmxml.a
build_tools/menuselect: build_tools/menuselect.c build_tools/menuselect_curses.c build_tools/menuselect.h mxml/libmxml.a include/autoconfig.h
$(MAKE) -C build_tools menuselect
mxml/libmxml.a:

View File

@ -237,6 +237,7 @@ void draw_title_window(WINDOW *title)
wmove(title, 3, (max_x / 2) - (strlen(MENU_TITLE3) / 2));
waddstr(title, MENU_TITLE3);
wmove(title, 0, 0);
waddstr(title, "Press 'h' for help");
wrefresh(title);
}