summaryrefslogtreecommitdiff
path: root/amiga
diff options
context:
space:
mode:
authorChris Young <chris@unsatisfactorysoftware.co.uk>2009-01-17 16:13:56 +0000
committerChris Young <chris@unsatisfactorysoftware.co.uk>2009-01-17 16:13:56 +0000
commit0ec4f9482c48a3c91d49017a8386133601a7e60d (patch)
treeb47b9719df518ce9ac115ba934daf47d06902927 /amiga
parent1417b0c0b8f67ce04aec98b449ed140e88529418 (diff)
downloadnetsurf-0ec4f9482c48a3c91d49017a8386133601a7e60d.tar.gz
netsurf-0ec4f9482c48a3c91d49017a8386133601a7e60d.tar.bz2
Clear render area properly when switching tabs
svn path=/trunk/netsurf/; revision=6116
Diffstat (limited to 'amiga')
-rwxr-xr-xamiga/gui.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/amiga/gui.c b/amiga/gui.c
index 85e2f92df..31effafa6 100755
--- a/amiga/gui.c
+++ b/amiga/gui.c
@@ -1232,7 +1232,7 @@ void ami_switch_tab(struct gui_window_2 *gwin,bool redraw)
{
struct IBox *bbox;
GetAttr(SPACE_AreaBox,gwin->gadgets[GID_BROWSER],(ULONG *)&bbox);
- p96RectFill(gwin->win->RPort,bbox->Left,bbox->Top,bbox->Width-1,bbox->Height-1,0xffffffff);
+ p96RectFill(gwin->win->RPort,bbox->Left,bbox->Top,bbox->Width+bbox->Left,bbox->Height+bbox->Top,0xffffffff);
browser_window_update(gwin->bw,false);