Browse Source

Don't hold on to the background print color option

When printing b/w we need to set the print background to off otherwise
we can inadvertently get backgrounds printing
7.0
Seth Hillbrand 3 years ago
parent
commit
e0a6ff3f14
  1. 4
      eeschema/dialogs/dialog_print_using_printer.cpp

4
eeschema/dialogs/dialog_print_using_printer.cpp

@ -249,7 +249,9 @@ void DIALOG_PRINT_USING_PRINTER::SavePrintOptions()
cfg->m_Printing.title_block = m_checkReference->IsChecked();
if( m_checkBackgroundColor->IsEnabled() )
cfg->m_Printing.background = m_checkBackgroundColor->IsChecked();
cfg->m_Printing.background = m_checkBackgroundColor->IsChecked();
else
cfg->m_Printing.background = false;
cfg->m_Printing.use_theme = m_checkUseColorTheme->IsChecked();

Loading…
Cancel
Save