Skip to content

Commit 45829ea

Browse files
authored
Merge pull request #2861 from gatecat/fix-def-fill
def2stream: Don't clear DEF fill created by newer klayout
2 parents 8080958 + 896d4f2 commit 45829ea

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

flow/util/def2stream.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
print("[INFO] Clearing cells...")
3232
for i in main_layout.each_cell():
3333
if i.cell_index() != top_cell_index:
34-
if not i.name.startswith("VIA_"):
34+
if not i.name.startswith("VIA_") and not i.name.endswith("_DEF_FILL"):
3535
i.clear()
3636

3737
# Load in the gds to merge

0 commit comments

Comments
 (0)