Skip to content

Commit

Permalink
Merge branch 'wip2'
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthias Koefferlein committed Sep 7, 2023
2 parents be1be46 + 8312a46 commit adb0b88
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/plugins/tools/xor/lay_plugin/XORToolDialog.ui
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,7 @@
<item row="4" column="1" colspan="2">
<widget class="QCheckBox" name="summarize_cb">
<property name="text">
<string>Summarize missing layers</string>
<string>Summarize missing layers (when output is marker DB)</string>
</property>
<property name="checked">
<bool>true</bool>
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/tools/xor/lay_plugin/layXORToolDialog.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1420,7 +1420,7 @@ XORToolDialog::run_xor ()

size_t todo_count = 0;
XORJob::EmptyLayerHandling el_handling = XORJob::EL_optimize;
if (summarize) {
if (summarize && output_mode == OMMarkerDatabase) {
el_handling = XORJob::EL_summarize;
} else if (process_el) {
el_handling = XORJob::EL_process;
Expand Down

0 comments on commit adb0b88

Please sign in to comment.