summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Young <chris@unsatisfactorysoftware.co.uk>2015-02-05 18:57:24 +0000
committerChris Young <chris@unsatisfactorysoftware.co.uk>2015-02-05 18:57:24 +0000
commitc2a79e7b503616209389abc16bc54058264a20a7 (patch)
treea404c81da8e8c55acd2223a87737f2317f4d063d
parented9902fcbcfa769e74a672a694956aed0b7744d3 (diff)
downloadnetsurf-c2a79e7b503616209389abc16bc54058264a20a7.tar.gz
netsurf-c2a79e7b503616209389abc16bc54058264a20a7.tar.bz2
Make the status bar a pixel taller
-rw-r--r--amiga/gui.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/amiga/gui.c b/amiga/gui.c
index 68c159af8..f72a039ad 100644
--- a/amiga/gui.c
+++ b/amiga/gui.c
@@ -4041,7 +4041,7 @@ gui_window_create(struct browser_window *bw,
GA_Left, scrn->WBorLeft + 2,
GA_RelBottom, -((2 + height + scrn->WBorBottom - scrn->RastPort.TxHeight)/2),
GA_Width, width,
- GA_Height, height - scrn->WBorBottom,
+ GA_Height, 1 + height - scrn->WBorBottom,
GA_DrawInfo, dri,
GA_BottomBorder, TRUE,
GA_ReadOnly, TRUE,
@@ -4057,7 +4057,7 @@ gui_window_create(struct browser_window *bw,
#endif
IA_Top, 2 - (scrn->RastPort.TxHeight),
IA_Left, -4,
- IA_Height, height - scrn->WBorBottom,
+ IA_Height, 1 + height - scrn->WBorBottom,
IA_Label, NULL,
IA_InBorder, TRUE,
IA_Screen, scrn,