summaryrefslogtreecommitdiff
path: root/build_tools/menuselect_curses.c
diff options
context:
space:
mode:
authorRussell Bryant <russell@russellbryant.com>2006-05-10 13:05:17 +0000
committerRussell Bryant <russell@russellbryant.com>2006-05-10 13:05:17 +0000
commit8e897e1a531bb1d63a7c53bd367e97e8b2fa0952 (patch)
tree973f619b7e6d3f3ca5db07752e0d54656c2aaa6f /build_tools/menuselect_curses.c
parentfdcfd6469bc41e123c44e520add8fac221651ddb (diff)
remove a debug message and make the exit keys not be case sensitive
inside of a category menu git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@26441 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'build_tools/menuselect_curses.c')
-rw-r--r--build_tools/menuselect_curses.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/build_tools/menuselect_curses.c b/build_tools/menuselect_curses.c
index d8bedc202..bdb6cf93f 100644
--- a/build_tools/menuselect_curses.c
+++ b/build_tools/menuselect_curses.c
@@ -143,9 +143,11 @@ void draw_category_menu(WINDOW *menu, struct category *cat, int start, int end,
snprintf(buf, sizeof(buf), "XXX %d.%s %s", i, i < 10 ? " " : "", mem->name);
else
snprintf(buf, sizeof(buf), "[%s] %d.%s %s", mem->enabled ? "*" : " ", i, i < 10 ? " " : "", mem->name);
- if (curopt + 1== i)
- desc = mem->displayname;
waddstr(menu, buf);
+
+ if (curopt + 1 == i)
+ desc = mem->displayname;
+
if (i == end)
break;
}
@@ -227,7 +229,7 @@ int run_category_menu(WINDOW *menu, int cat_num)
default:
break;
}
- if (c == 'x' || c == 'q')
+ if (c == 'x' || c == 'X' || c == 'Q' || c == 'q')
break;
draw_category_menu(menu, cat, start, end, curopt);
}