[project @ 2004-07-19 15:02:22 by bursa]

Use browser_redraw_box() when updating form select controls.

svn path=/import/netsurf/; revision=1106
This commit is contained in:
James Bursa 2004-07-19 15:02:22 +00:00
parent 14ba3ae2e3
commit c4a502219f
1 changed files with 1 additions and 4 deletions

View File

@ -1435,7 +1435,6 @@ void browser_window_form_select(struct browser_window *bw,
struct form_option *o;
int count;
struct box *inline_box = control->box->children->children;
int x, y;
for (count = 0, o = control->data.select.items;
o != NULL;
@ -1474,9 +1473,7 @@ void browser_window_form_select(struct browser_window *bw,
inline_box->length = strlen(inline_box->text);
inline_box->width = control->box->width;
box_coords(control->box, &x, &y);
gui_window_redraw(bw->window, x, y,
x + control->box->width, y + control->box->height);
browser_redraw_box(bw->current_content, control->box);
}