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:
parent
d48ec3aa8c
commit
e0a6ff3f14
|
@ -249,7 +249,9 @@ void DIALOG_PRINT_USING_PRINTER::SavePrintOptions()
|
||||||
cfg->m_Printing.title_block = m_checkReference->IsChecked();
|
cfg->m_Printing.title_block = m_checkReference->IsChecked();
|
||||||
|
|
||||||
if( m_checkBackgroundColor->IsEnabled() )
|
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();
|
cfg->m_Printing.use_theme = m_checkUseColorTheme->IsChecked();
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue