Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use this (incorrect) query on a layout:
with instances from cells ..via do inst.property("X") = 1
After running this query, an error is reported and the layout is in "under construction" state. Finally the application crashes.
The text was updated successfully, but these errors were encountered:
BTW: the right version is:
with instances of cells ..via do inst.set_property("X", 1)
while this is wrong, but does not give any error:
with instances from cells ..via do inst.set_property("X", 1)
Sorry, something went wrong.
Fixed #524 (failed query leaves layout in invalid state)
bca7b5e
c93db59
Fixed #524 (failed query leaves layout in invalid state) (#528)
6526ac0
klayoutmatthias
No branches or pull requests
Use this (incorrect) query on a layout:
After running this query, an error is reported and the layout is in "under construction" state. Finally the application crashes.
The text was updated successfully, but these errors were encountered: