From 0e75f9909e7b3ede53ae45407a2884d71efae5b9 Mon Sep 17 00:00:00 2001 From: Chris Young Date: Wed, 4 Feb 2015 00:48:47 +0000 Subject: Fix status bar tags --- amiga/gui.c | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) (limited to 'amiga') diff --git a/amiga/gui.c b/amiga/gui.c index f13b5672c..134d8a114 100644 --- a/amiga/gui.c +++ b/amiga/gui.c @@ -4041,22 +4041,27 @@ 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_DrawInfo, dri, GA_BottomBorder, TRUE, GA_ReadOnly, TRUE, -#ifdef __amigaos4__ + GA_Disabled, TRUE, GA_Image, (struct Image *)NewObject( NULL, +#ifdef __amigaos4__ "gaugeiclass", + GAUGEIA_Level, 0, +#else + "frameiclass", + IA_Recessed, TRUE, +#endif IA_Top, 2 - (scrn->RastPort.TxHeight), IA_Left, -4, - IA_Height, 4 + scrn->RastPort.TxHeight, - IA_InBorder, TRUE, + IA_Height, height - scrn->WBorBottom, IA_Label, NULL, + IA_InBorder, TRUE, IA_Screen, scrn, - GAUGEIA_Level, 0, TAG_DONE), -#endif TAG_DONE); AddGList(g->shared->win, (struct Gadget *)g->shared->objects[GID_STATUS], -- cgit v1.2.3