summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Young <chris@unsatisfactorysoftware.co.uk>2010-03-21 14:53:09 +0000
committerChris Young <chris@unsatisfactorysoftware.co.uk>2010-03-21 14:53:09 +0000
commitdd5370ef830ff2b813473cfde3c7296e11c7cde0 (patch)
tree52d895f9f83747e1a0f627abd3eb4390abdcf538
parent033b5d815a19a05441a99cdc744a6a8752d191cc (diff)
downloadnetsurf-dd5370ef830ff2b813473cfde3c7296e11c7cde0.tar.gz
netsurf-dd5370ef830ff2b813473cfde3c7296e11c7cde0.tar.bz2
Avoid corruption of bottom window border after resize
svn path=/trunk/netsurf/; revision=10140
-rwxr-xr-xamiga/gui.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/amiga/gui.c b/amiga/gui.c
index 33d032b5f..d47a7a4b5 100755
--- a/amiga/gui.c
+++ b/amiga/gui.c
@@ -535,6 +535,7 @@ void gui_init(int argc, char** argv)
{
throbber_width = throbber_bmh->bmh_Width / throbber_frames;
throbber_height = throbber_bmh->bmh_Height;
+ throbber_bmh->bmh_Masking = mskHasAlpha;
InitRastPort(&throbber_rp);
@@ -2821,7 +2822,7 @@ ULONG ami_set_border_gadget_balance(struct gui_window_2 *gwin)
GA_Width, size1,
TAG_DONE);
- RefreshGList((struct Gadget *)gwin->objects[GID_STATUS], gwin->win, NULL, 2);
+ RefreshWindowFrame(gwin->win);
}
ULONG ami_get_border_gadget_balance(struct gui_window_2 *gwin, ULONG *size1, ULONG *size2)