Skip to content

Commit

Permalink
Corrected another error related to read-only views in which magic cra…
Browse files Browse the repository at this point in the history
…shes when

attempting to place a generated cell in the layout, as pointed out by Mark Martin
in github Issue #309.
  • Loading branch information
RTimothyEdwards committed May 24, 2024
1 parent 291ba96 commit cf5fd86
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
8.3.483
8.3.484
4 changes: 3 additions & 1 deletion database/DBcellname.c
Original file line number Diff line number Diff line change
Expand Up @@ -1121,11 +1121,13 @@ DBUsePrint(CellName, who, dolist)
celldef = DBCellLookDef(CellName);
*lasthier = '/';
}
else
else if (EditCellUse != NULL)
{
/* Referenced cellDef is the current edit def */
celldef = EditCellUse->cu_def;
}
else
return;

switch (who)
{
Expand Down

0 comments on commit cf5fd86

Please sign in to comment.