Index: trunk/doc/user/09_appendix/action_details.html =================================================================== --- trunk/doc/user/09_appendix/action_details.html (revision 20622) +++ trunk/doc/user/09_appendix/action_details.html (revision 20623) @@ -80,6 +80,10 @@

Pops up a dialog letting the user edit the attributes of the pcb, a subcircuit, or a layer. +

autoplaceselected

+

+Attempts to re-arrange the selected components such that the nets connecting them are minimized. Note that you cannot undo this. +

changeclearsize

If the solder mask is currently showing, this action changes the solder mask cutout size. If the mask is not showing, this action changes the polygon clearance. Index: trunk/doc/user/09_appendix/action_src/autoplaceselected.html =================================================================== --- trunk/doc/user/09_appendix/action_src/autoplaceselected.html (nonexistent) +++ trunk/doc/user/09_appendix/action_src/autoplaceselected.html (revision 20623) @@ -0,0 +1,2 @@ +Attempts to re-arrange the selected components such that the nets +connecting them are minimized. Note that you cannot undo this. Index: trunk/src_plugins/autoplace/action.c =================================================================== --- trunk/src_plugins/autoplace/action.c (revision 20622) +++ trunk/src_plugins/autoplace/action.c (revision 20623) @@ -41,16 +41,8 @@ #include "event.h" static const char autoplace_syntax[] = "AutoPlaceSelected()"; - static const char autoplace_help[] = "Auto-place selected components."; - -/* %start-doc actions AutoPlaceSelected - -Attempts to re-arrange the selected components such that the nets -connecting them are minimized. Note that you cannot undo this. - -%end-doc */ - +/* DOC: autoplaceselected */ static fgw_error_t pcb_act_AutoPlaceSelected(fgw_arg_t *res, int argc, fgw_arg_t *argv) { pcb_event(PCB_EVENT_BUSY, NULL);