Index: trunk/src_plugins/dialogs/dlg_netlist.c =================================================================== --- trunk/src_plugins/dialogs/dlg_netlist.c (revision 38181) +++ trunk/src_plugins/dialogs/dlg_netlist.c (revision 38182) @@ -616,36 +616,38 @@ RND_DAD_CHANGE_CB(netlist_ctx.dlg, netlist_button_cb); RND_DAD_HELP(netlist_ctx.dlg, "remove all objects (except for terminals) on the selected network"); RND_DAD_END(netlist_ctx.dlg); - RND_DAD_BEGIN_VBOX(netlist_ctx.dlg); + + RND_DAD_BEGIN_VBOX(netlist_ctx.dlg); /* back annotated changes */ + RND_DAD_COMPFLAG(netlist_ctx.dlg, RND_HATF_FRAME); RND_DAD_BUTTON(netlist_ctx.dlg, "rename"); netlist_ctx.wrename = RND_DAD_CURRENT(netlist_ctx.dlg); RND_DAD_CHANGE_CB(netlist_ctx.dlg, netlist_button_cb); - RND_DAD_HELP(netlist_ctx.dlg, "change the name of the selected network"); + RND_DAD_HELP(netlist_ctx.dlg, "change the name of the selected network\nBack annotated."); RND_DAD_BEGIN_HBOX(netlist_ctx.dlg); RND_DAD_BUTTON(netlist_ctx.dlg, "merge"); netlist_ctx.wmerge = RND_DAD_CURRENT(netlist_ctx.dlg); RND_DAD_CHANGE_CB(netlist_ctx.dlg, netlist_button_cb); - RND_DAD_HELP(netlist_ctx.dlg, "merge the selected network into another network"); + RND_DAD_HELP(netlist_ctx.dlg, "merge the selected network into another (named) network\nBack annotated."); RND_DAD_BUTTON(netlist_ctx.dlg, "attr"); netlist_ctx.wattr = RND_DAD_CURRENT(netlist_ctx.dlg); RND_DAD_CHANGE_CB(netlist_ctx.dlg, netlist_button_cb); - RND_DAD_HELP(netlist_ctx.dlg, "change attributes of the selected network"); + RND_DAD_HELP(netlist_ctx.dlg, "change attributes of the selected network\nBack annotated."); RND_DAD_END(netlist_ctx.dlg); RND_DAD_END(netlist_ctx.dlg); RND_DAD_END(netlist_ctx.dlg); RND_DAD_BEGIN_HBOX(netlist_ctx.dlg); /* bottom button row */ - RND_DAD_LABEL(netlist_ctx.dlg, "Claim:"); - RND_DAD_HELP(netlist_ctx.dlg, "Map galvanic connection of existing objects and convert them into a network on the netlist"); + RND_DAD_LABEL(netlist_ctx.dlg, "Claim:"); /* back annotated */ + RND_DAD_HELP(netlist_ctx.dlg, "Map galvanic connection of existing objects and convert them into a network on the netlist\nBack annotated."); RND_DAD_BUTTON(netlist_ctx.dlg, "click"); RND_DAD_CHANGE_CB(netlist_ctx.dlg, netlist_claim_obj_cb); - RND_DAD_HELP(netlist_ctx.dlg, "Click on an object to create a new network of all connected objects from there"); + RND_DAD_HELP(netlist_ctx.dlg, "Click on an object to create a new network of all connected objects from there\nBack annotated."); RND_DAD_BUTTON(netlist_ctx.dlg, "select"); RND_DAD_CHANGE_CB(netlist_ctx.dlg, netlist_claim_sel_cb); - RND_DAD_HELP(netlist_ctx.dlg, "create a new network of all selected objects"); + RND_DAD_HELP(netlist_ctx.dlg, "create a new network of all selected objects\nBack annotated."); RND_DAD_BUTTON(netlist_ctx.dlg, "found"); RND_DAD_CHANGE_CB(netlist_ctx.dlg, netlist_claim_fnd_cb); - RND_DAD_HELP(netlist_ctx.dlg, "create a new network of all found (green) objects"); + RND_DAD_HELP(netlist_ctx.dlg, "create a new network of all found (green) objects\nBack annotated."); RND_DAD_LABEL(netlist_ctx.dlg, "Len:"); RND_DAD_BUTTON(netlist_ctx.dlg, "calc");