diff options
author | Chris Young <chris@unsatisfactorysoftware.co.uk> | 2012-11-28 19:41:18 +0000 |
---|---|---|
committer | Chris Young <chris@unsatisfactorysoftware.co.uk> | 2012-11-28 19:41:18 +0000 |
commit | 56d5e6963a42aad0e03886496923779ee65fa362 (patch) | |
tree | 500b0ddf57a9186694bc1244145373114caeb5a1 /amiga | |
parent | 09bc58f7c2926922e59542e8ca2de2f5941714df (diff) | |
download | netsurf-56d5e6963a42aad0e03886496923779ee65fa362.tar.gz |
Actually show the toolbar. It looks awful.
Diffstat (limited to 'amiga')
-rwxr-xr-x | amiga/gui.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/amiga/gui.c b/amiga/gui.c index 3a00435de..0cc0778d0 100755 --- a/amiga/gui.c +++ b/amiga/gui.c @@ -2501,6 +2501,14 @@ void ami_gui_hotlist_toolbar_add(struct gui_window_2 *gwin) IDoMethod(gwin->objects[GID_HOTLISTLAYOUT], LM_ADDCHILD, gwin->win, gwin->objects[GID_HOTLIST], NULL); } + + FlushLayoutDomainCache((struct Gadget *)gwin->objects[GID_MAIN]); + + RethinkLayout((struct Gadget *)gwin->objects[GID_MAIN], + gwin->win, NULL, TRUE); + + gwin->redraw_required = true; + gwin->bw->reformat_pending = true; } void ami_toggletabbar(struct gui_window_2 *gwin, bool show) |