summaryrefslogtreecommitdiff
path: root/frontends
diff options
context:
space:
mode:
authorChris Young <chris@unsatisfactorysoftware.co.uk>2017-01-15 20:15:10 +0000
committerChris Young <chris@unsatisfactorysoftware.co.uk>2017-01-15 20:15:10 +0000
commitd871be3ea00ef74ab28b936526768bbf121e3eb0 (patch)
tree381002fe10b0a6f4fca07b75716ab9508de8403c /frontends
parentd843f78c202900409b0cd0c16397f6dae77bbe2b (diff)
downloadnetsurf-d871be3ea00ef74ab28b936526768bbf121e3eb0.tar.gz
netsurf-d871be3ea00ef74ab28b936526768bbf121e3eb0.tar.bz2
Update documentaton
Diffstat (limited to 'frontends')
-rwxr-xr-xfrontends/amiga/dist/NetSurf.guide4
-rw-r--r--frontends/amiga/menu.c2
2 files changed, 3 insertions, 3 deletions
diff --git a/frontends/amiga/dist/NetSurf.guide b/frontends/amiga/dist/NetSurf.guide
index 754cdbeb9..512a264e6 100755
--- a/frontends/amiga/dist/NetSurf.guide
+++ b/frontends/amiga/dist/NetSurf.guide
@@ -285,11 +285,11 @@ Items from the hotlist can be added to the Hotlist menu as follows:
Select Hotlist => Show hotlist...
-Items in the "Hotlist menu" folder node, up to a maximum (currently) of 40 items, will be added to the Hotlist menu, within the limits of the Intuition menu system.
+Items in the "Hotlist menu" folder node, up to a maximum (currently) of 200 items, will be added to the Hotlist menu, within the limits of the Intuition menu system.
Items in folders within the Menu folder node will be converted to subitems in the menu.
-Folders more than one level down in the heirarchy will become menu items with no action. Items deeper will not be included in the menu at all (until we switch to using menuclass).
+When using a version of AmigaOS older than OS4.1FE, folders more than one level down in the heirarchy will become menu items with no action. Items deeper will not be included in the menu at all.
Folders with no items in them will show up disabled in the menu. If they are named "--" they will be displayed as separator bars.
diff --git a/frontends/amiga/menu.c b/frontends/amiga/menu.c
index 91acce72d..2d2ec4e30 100644
--- a/frontends/amiga/menu.c
+++ b/frontends/amiga/menu.c
@@ -262,7 +262,7 @@ static int ami_menu_layout_mc_recursive(Object *menu_parent, struct ami_menu_dat
TAG_DONE);
}
- LOG("Adding item %p ID %d (%s) to parent %p", menu_item, j, md[j]->menulab, menu_parent);
+ //LOG("Adding item %p ID %d (%s) to parent %p", menu_item, j, md[j]->menulab, menu_parent);
IDoMethod(menu_parent, OM_ADDMEMBER, menu_item);
continue;
} else if (md[j]->menutype > level) {