From 18aefabd20a16dda9ed5363088f0da5ada0d4431 Mon Sep 17 00:00:00 2001 From: Vincent Sanders Date: Mon, 30 Jun 2014 16:40:56 +0100 Subject: change reformat to be driven from the scheduler like redraw --- windows/gui.c | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) (limited to 'windows') diff --git a/windows/gui.c b/windows/gui.c index 824abade7..19a31c1be 100644 --- a/windows/gui.c +++ b/windows/gui.c @@ -93,7 +93,6 @@ static void nsws_set_scale(struct gui_window *gw, float scale) return; browser_window_set_scale(gw->bw, scale, true); - browser_window_reformat(gw->bw, false, gw->width, gw->height); } @@ -1820,6 +1819,16 @@ nsws_create_main_class(HINSTANCE hinstance) { return ret; } +/** + * callback from core to reformat a window. + */ +static void win32_window_reformat(struct gui_window *gw) +{ + if (gw != NULL) { + browser_window_reformat(gw->bw, false, gw->width, gw->height); + } +} + /** * Generate a windows path from one or more component elemnts. * @@ -2087,6 +2096,7 @@ static struct gui_window_table window_table = { .set_scroll = gui_window_set_scroll, .get_dimensions = gui_window_get_dimensions, .update_extent = gui_window_update_extent, + .reformat = win32_window_reformat, .set_title = gui_window_set_title, .set_url = gui_window_set_url, -- cgit v1.2.3