From c277afc6d91e2eed651a2bc37121ba176ab5ac58 Mon Sep 17 00:00:00 2001 From: Chris Young Date: Fri, 29 May 2009 22:56:49 +0000 Subject: [PATCH] This really fixes the resize bug (#63) svn path=/trunk/netsurf/; revision=7630 --- amiga/gui.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/amiga/gui.c b/amiga/gui.c index d2b1794a1..5e0b9f4e0 100755 --- a/amiga/gui.c +++ b/amiga/gui.c @@ -2378,10 +2378,12 @@ void ami_do_redraw(struct gui_window_2 *g,bool scroll) if(!option_direct_render) { + Forbid(); GetAttr(SPACE_AreaBox,g->gadgets[GID_BROWSER],(ULONG *)&bbox); BltBitMapRastPort(glob.bm,0,0,g->win->RPort,bbox->Left,bbox->Top, bbox->Width,bbox->Height,0x0C0); + Permit(); } }