Don't automatically redraw the edit box; this allows better inheritance.

This commit is contained in:
Michael Brown
2006-12-20 02:09:41 +00:00
parent 35dcbfe771
commit 3e0f7621eb
2 changed files with 15 additions and 20 deletions

View File

@@ -94,22 +94,3 @@ void draw_editbox ( struct edit_box *box ) {
mvwprintw ( box->win, box->row, box->col, "%s", buf );
wmove ( box->win, box->row, ( box->col + cursor_offset ) );
}
/**
* Edit text box widget
*
* @v box Editable text box widget
* @v key Key pressed by user
* @ret key Key returned to application, or zero
*
*/
int edit_editbox ( struct edit_box *box, int key ) {
/* Update the string itself */
key = edit_string ( &box->string, key );
/* Update the display */
draw_editbox ( box );
return key;
}