Corrected an error introduced by the code added recently for support

of command logging, which caused the "select cell <instance>" command
option to become invalid;  this command option is used by the
parameterized cell generator and makes it impossible to edit the
parameterized cells.
This commit is contained in:
Tim Edwards 2023-07-21 15:35:58 -04:00
parent 90a3cf2d72
commit 0afe4d87d4
2 changed files with 5 additions and 4 deletions

View File

@ -1 +1 @@
8.3.415
8.3.416

View File

@ -1560,8 +1560,9 @@ Okay:
* click" code.
*/
if ((cmd->tx_argc == 3) && (optionArgs == &cmd->tx_argv[2]) &&
(more == FALSE) && (less == FALSE))
if (((cmd->tx_argc == 3) || (cmd->tx_argc == 6)) &&
(optionArgs == &cmd->tx_argv[2]) &&
(more == FALSE) && (less == FALSE))
{
use = lastUse = scx.scx_use;
p.p_x = scx.scx_use->cu_xlo;
@ -1569,7 +1570,7 @@ Okay:
trans = GeoIdentityTransform;
printPath = scx.scx_use->cu_id;
}
else if (cmd->tx_argc == 3)
else if ((cmd->tx_argc == 3) || (cmd->tx_argc == 6))
{
SearchContext scx2;