From 9c7ced69d22a27491cbb1579b3db06b14898d080 Mon Sep 17 00:00:00 2001 From: Chris Young Date: Sat, 11 Feb 2012 23:17:47 +0000 Subject: 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 --- amiga/gui.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'amiga') 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], -- cgit v1.2.3