Attempt to do some re-layout if the toolbar is added after the window opens.

This commit is contained in:
Chris Young 2012-12-01 15:15:12 +00:00
parent 1e2cc766cd
commit ee79de5244
1 changed files with 6 additions and 1 deletions

View File

@ -2517,6 +2517,11 @@ void ami_gui_hotlist_toolbar_add(struct gui_window_2 *gwin)
RethinkLayout((struct Gadget *)gwin->objects[GID_MAIN],
gwin->win, NULL, TRUE);
if(gwin->win) {
gwin->redraw_required = true;
gwin->bw->reformat_pending = true;
}
}
}
@ -4295,7 +4300,7 @@ void ami_scroller_hook(struct Hook *hook,Object *object,struct IntuiMessage *msg
break;
case GID_HOTLIST:
if(node = GetTagData(SPEEDBAR_SelectedNode, 0, msg->IAddress)) {
if(node = (struct Node *)GetTagData(SPEEDBAR_SelectedNode, 0, msg->IAddress)) {
GetSpeedButtonNodeAttrs(node, SBNA_UserData, (ULONG *)&url, TAG_DONE);
browser_window_go(gwin->bw, url, NULL, true);
}