Fixed disabling the block title for footprint editor printouts

This commit is contained in:
Maciej Suminski 2018-10-31 16:31:39 +01:00
parent afda69c9cc
commit ca1687d7ce
1 changed files with 7 additions and 0 deletions

View File

@ -63,6 +63,13 @@ void DIALOG_PRINT_GENERIC::ForcePrintBorder( bool aValue )
{ {
m_titleBlock->SetValue( aValue ); m_titleBlock->SetValue( aValue );
m_titleBlock->Hide(); m_titleBlock->Hide();
if( m_config )
{
m_settings->Load( m_config );
m_settings->m_titleBlock = aValue;
m_settings->Save( m_config );
}
} }