mirror of
				https://github.com/asterisk/asterisk.git
				synced 2025-10-31 02:37:10 +00:00 
			
		
		
		
	menuselect: Various menuselect enhancements
* Add 'external' as a support level.
* Add ability for module directories to add entries to the menu
  by adding members to the <module_prefix>/<module_prefix>.xml file.
* Expand the description field to 3 lines in the ncurses implementation.
* Allow the description field to wrap in the newt implementation.
* Add description field to the gtk implementation.
Change-Id: I7f9600a1984a42ce0696db574c1051bc9ad7c808
(cherry picked from commit 90f445729d)
			
			
This commit is contained in:
		| @@ -326,7 +326,7 @@ int run_menu(void) | ||||
| 	newtFormAddComponent(form, subOptions); | ||||
| 	newtComponentAddCallback(subOptions, category_menu_callback, NULL); | ||||
|  | ||||
| 	memberNameTextbox       = newtTextbox(2, y - 13, x - 10, 1, 0); | ||||
| 	memberNameTextbox       = newtTextbox(2, y - 13, x - 10, 2, NEWT_FLAG_WRAP); | ||||
| 	dependsLabel            = newtLabel(2, y - 11, "    Depends on:"); | ||||
| 	usesLabel               = newtLabel(2, y - 10, "       Can use:"); | ||||
| 	conflictsLabel          = newtLabel(2, y - 9,  "Conflicts with:"); | ||||
|   | ||||
		Reference in New Issue
	
	Block a user