summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Young <chris@unsatisfactorysoftware.co.uk>2012-02-11 23:17:47 +0000
committerChris Young <chris@unsatisfactorysoftware.co.uk>2012-02-11 23:17:47 +0000
commit9c7ced69d22a27491cbb1579b3db06b14898d080 (patch)
treec596e4219c3e2832b0b6b9026772b3d64610dfbc
parent26a1bb77183478903659ef4bfc99df8f742c819b (diff)
downloadnetsurf-9c7ced69d22a27491cbb1579b3db06b14898d080.tar.gz
netsurf-9c7ced69d22a27491cbb1579b3db06b14898d080.tar.bz2
Shift status bar text over by a pixel and reposition the frame slightly.
Don't use WBorBottom as that is not particulary relevant to what we're trying to do. svn path=/trunk/netsurf/; revision=13441
-rwxr-xr-xamiga/gui.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/amiga/gui.c b/amiga/gui.c
index 293777b15..c616d16fa 100755
--- a/amiga/gui.c
+++ b/amiga/gui.c
@@ -2919,7 +2919,7 @@ struct gui_window *gui_create_browser_window(struct browser_window *bw,
NULL,
"frbuttonclass",
GA_ID, GID_STATUS,
- GA_Left, scrn->WBorLeft + 1,
+ GA_Left, scrn->WBorLeft + 2,
GA_RelBottom, -((2 + sz + scrn->WBorBottom - scrn->RastPort.TxHeight)/2),
GA_Width, size1,
GA_DrawInfo, dri,
@@ -2929,9 +2929,9 @@ struct gui_window *gui_create_browser_window(struct browser_window *bw,
NULL,
"frameiclass",
IA_FrameType, FRAME_DISPLAY,
- IA_Top, 2-(scrn->RastPort.TxHeight),
- IA_Left, -2,
- IA_Height, scrn->WBorBottom + scrn->RastPort.TxHeight,
+ IA_Top, 2 - (scrn->RastPort.TxHeight),
+ IA_Left, -3,
+ IA_Height, 4 + scrn->RastPort.TxHeight,
IA_InBorder, TRUE,
TAG_DONE),
GA_Next, gwin->shared->objects[GID_HSCROLL],