better menu text
This commit is contained in:
parent
d98c855135
commit
f466ce5ad4
|
|
@ -72,7 +72,7 @@ void xschem_cmd_help(int argc, const char **argv)
|
|||
"align\n",
|
||||
" Align selected part of schematic to current gid snap setting\n",
|
||||
/* "arc\n", */
|
||||
"attach_pins\n",
|
||||
"attach_labels\n",
|
||||
" Attach labels to selected instance pins\n",
|
||||
"bbox [begin | end]\n",
|
||||
" bbox begin: start a bounding box drawing area setting\n",
|
||||
|
|
@ -317,7 +317,7 @@ int xschem(ClientData clientdata, Tcl_Interp *interp, int argc, const char * arg
|
|||
xctx->ui_state |= MENUSTARTARC;
|
||||
}
|
||||
|
||||
else if(!strcmp(argv[1],"attach_pins")) /* attach pins to selected component 20171005 */
|
||||
else if(!strcmp(argv[1],"attach_labels")) /* attach pins to selected component 20171005 */
|
||||
{
|
||||
cmd_found = 1;
|
||||
attach_labels_to_inst(0);
|
||||
|
|
|
|||
|
|
@ -4174,8 +4174,8 @@ proc build_widgets { {topwin {} } } {
|
|||
$topwin.menubar.sym.menu add command -label "Make schematic from symbol" -command "xschem make_sch" -accelerator Ctrl+L
|
||||
$topwin.menubar.sym.menu add command -label "Make schematic and symbol from selected components" \
|
||||
-command "xschem make_sch_from_sel" -accelerator Ctrl+Shift+H
|
||||
$topwin.menubar.sym.menu add command -label "Attach pins to component instance" \
|
||||
-command "xschem attach_pins" -accelerator Shift+H
|
||||
$topwin.menubar.sym.menu add command -label "Attach net labels to component instance" \
|
||||
-command "xschem attach_labels" -accelerator Shift+H
|
||||
$topwin.menubar.sym.menu add command -label "Create symbol pins from selected schematic pins" \
|
||||
-command "schpins_to_sympins" -accelerator Alt+H
|
||||
$topwin.menubar.sym.menu add command -label "Place symbol pin" \
|
||||
|
|
|
|||
Loading…
Reference in New Issue