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
This commit is contained in:
Seth Hillbrand 2022-09-16 15:33:39 -07:00
parent d48ec3aa8c
commit e0a6ff3f14
1 changed files with 3 additions and 1 deletions

View File

@ -250,6 +250,8 @@ void DIALOG_PRINT_USING_PRINTER::SavePrintOptions()
if( m_checkBackgroundColor->IsEnabled() )
cfg->m_Printing.background = m_checkBackgroundColor->IsChecked();
else
cfg->m_Printing.background = false;
cfg->m_Printing.use_theme = m_checkUseColorTheme->IsChecked();