Corrected an error that was introduced in the August 3 commit and
which prevents the "Ctrl-P" key from raising the .params window; the underlying error is that the original error in the "property" command was a disagreement about where "argstart" is placed. The command was fixed to make the "property" command work correctly. However, the solution made "argstart" wrong when using the command "cellname property". Now both uses are handled correctly.
This commit is contained in:
parent
427547c927
commit
f3b08ad470
|
|
@ -1296,7 +1296,7 @@ CmdCellname(w, cmd)
|
|||
if (cellDef == (CellDef *) NULL)
|
||||
TxError("Unknown cell %s\n", cellname);
|
||||
else
|
||||
CmdDoProperty(cellDef, cmd, 2 + ((dolist) ? 1 : 0));
|
||||
CmdDoProperty(cellDef, cmd, 3 + ((dolist) ? 1 : 0));
|
||||
break;
|
||||
|
||||
case IDX_DELETE:
|
||||
|
|
|
|||
Loading…
Reference in New Issue