mirror of
https://github.com/netsurf-browser/netsurf
synced 2024-12-23 04:26:50 +03:00
Perform dynamic update of Hotlist menu when using MenuClass menus
Currently updates on closing the Hotlist window, but could be persuaded to update on every hotlist drag if deemed necessary.
This commit is contained in:
parent
53ce28c170
commit
2083375ec4
@ -3327,7 +3327,7 @@ void ami_gui_hotlist_update_all(void)
|
|||||||
|
|
||||||
if(IsMinListEmpty(window_list)) return;
|
if(IsMinListEmpty(window_list)) return;
|
||||||
|
|
||||||
//ami_gui_menu_refresh_hotlist(); /**\todo disabled as menuclass isn't updating correctly */
|
ami_gui_menu_refresh_hotlist();
|
||||||
|
|
||||||
node = (struct nsObject *)GetHead((struct List *)window_list);
|
node = (struct nsObject *)GetHead((struct List *)window_list);
|
||||||
|
|
||||||
|
@ -240,6 +240,7 @@ static int ami_menu_layout_mc_recursive(Object *menu_parent, struct ami_menu_dat
|
|||||||
if(level == NM_TITLE) {
|
if(level == NM_TITLE) {
|
||||||
menu_item = NewObject(NULL, "menuclass",
|
menu_item = NewObject(NULL, "menuclass",
|
||||||
MA_Type, T_MENU,
|
MA_Type, T_MENU,
|
||||||
|
MA_ID, j,
|
||||||
MA_Label, md[j]->menulab,
|
MA_Label, md[j]->menulab,
|
||||||
TAG_DONE);
|
TAG_DONE);
|
||||||
} else {
|
} else {
|
||||||
@ -446,7 +447,7 @@ void ami_menu_refresh(struct Menu *menu, struct ami_menu_data **md, int menu_ite
|
|||||||
if(LIB_IS_AT_LEAST((struct Library *)IntuitionBase, 54, 6)) {
|
if(LIB_IS_AT_LEAST((struct Library *)IntuitionBase, 54, 6)) {
|
||||||
/* find the address of the menu */
|
/* find the address of the menu */
|
||||||
menu_item_obj = (Object *)IDoMethod((Object *)menu, MM_FINDID, 0, menu_item);
|
menu_item_obj = (Object *)IDoMethod((Object *)menu, MM_FINDID, 0, menu_item);
|
||||||
|
printf("%lx\n", menu_item_obj);
|
||||||
/* remove all children */
|
/* remove all children */
|
||||||
while((obj = (Object *)IDoMethod(menu_item_obj, MM_NEXTCHILD, 0, NULL)) != NULL) {
|
while((obj = (Object *)IDoMethod(menu_item_obj, MM_NEXTCHILD, 0, NULL)) != NULL) {
|
||||||
IDoMethod(menu_item_obj, OM_REMMEMBER, obj);
|
IDoMethod(menu_item_obj, OM_REMMEMBER, obj);
|
||||||
|
Loading…
Reference in New Issue
Block a user