mirror of
				https://github.com/asterisk/asterisk.git
				synced 2025-10-31 10:47:18 +00:00 
			
		
		
		
	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
This commit is contained in:
		| @@ -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); | ||||
| 	} | ||||
|   | ||||
		Reference in New Issue
	
	Block a user