mirror of https://github.com/KLayout/klayout.git
Fixed issue-1473 (Ignore 'Summarize missing layers' when sending XOR result to other layout)
This commit is contained in:
parent
c6d7b3e7fc
commit
8312a468ca
|
|
@ -341,7 +341,7 @@
|
||||||
<item row="4" column="1" colspan="2">
|
<item row="4" column="1" colspan="2">
|
||||||
<widget class="QCheckBox" name="summarize_cb">
|
<widget class="QCheckBox" name="summarize_cb">
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>Summarize missing layers</string>
|
<string>Summarize missing layers (when output is marker DB)</string>
|
||||||
</property>
|
</property>
|
||||||
<property name="checked">
|
<property name="checked">
|
||||||
<bool>true</bool>
|
<bool>true</bool>
|
||||||
|
|
|
||||||
|
|
@ -1420,7 +1420,7 @@ XORToolDialog::run_xor ()
|
||||||
|
|
||||||
size_t todo_count = 0;
|
size_t todo_count = 0;
|
||||||
XORJob::EmptyLayerHandling el_handling = XORJob::EL_optimize;
|
XORJob::EmptyLayerHandling el_handling = XORJob::EL_optimize;
|
||||||
if (summarize) {
|
if (summarize && output_mode == OMMarkerDatabase) {
|
||||||
el_handling = XORJob::EL_summarize;
|
el_handling = XORJob::EL_summarize;
|
||||||
} else if (process_el) {
|
} else if (process_el) {
|
||||||
el_handling = XORJob::EL_process;
|
el_handling = XORJob::EL_process;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue