summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Young <chris@unsatisfactorysoftware.co.uk>2012-03-31 21:49:50 +0000
committerChris Young <chris@unsatisfactorysoftware.co.uk>2012-03-31 21:49:50 +0000
commit7a12cad43911066dc49bfb852d4e9d4d65912ad1 (patch)
treebec19791bc7360342164392b4ca5beaaa421c1c7
parent9a6b4efc7b51fc90498d168cb1071a4908d6b8d0 (diff)
downloadnetsurf-7a12cad43911066dc49bfb852d4e9d4d65912ad1.tar.gz
netsurf-7a12cad43911066dc49bfb852d4e9d4d65912ad1.tar.bz2
Change the status bar frameiclass to a gaugeiclass, as it is more
aesthetically pleasing, and also allows us to show progress bar if it is possible to get this data from the core in the future. svn path=/trunk/netsurf/; revision=13783
-rwxr-xr-xamiga/gui.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/amiga/gui.c b/amiga/gui.c
index edf7cbaac..55ffeb217 100755
--- a/amiga/gui.c
+++ b/amiga/gui.c
@@ -2975,12 +2975,16 @@ struct gui_window *gui_create_browser_window(struct browser_window *bw,
GA_ReadOnly, TRUE,
GA_Image, (struct Image *)NewObject(
NULL,
- "frameiclass",
- IA_FrameType, FRAME_DISPLAY,
+ "gaugeiclass",
+ //"frameiclass",
+ //IA_FrameType, FRAME_DISPLAY,
IA_Top, 2 - (scrn->RastPort.TxHeight),
IA_Left, -3,
IA_Height, 4 + scrn->RastPort.TxHeight,
IA_InBorder, TRUE,
+ IA_Label, NULL,
+ IA_Screen, scrn,
+ GAUGEIA_Level, 0,
TAG_DONE),
GA_Next, gwin->shared->objects[GID_HSCROLL],
TAG_DONE);