From c2a79e7b503616209389abc16bc54058264a20a7 Mon Sep 17 00:00:00 2001 From: Chris Young Date: Thu, 5 Feb 2015 18:57:24 +0000 Subject: Make the status bar a pixel taller --- amiga/gui.c | 4 ++-- 1 file 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, -- cgit v1.2.3