Commit 1247401e authored by Dick Hollenbeck's avatar Dick Hollenbeck

pcbnew's footprint editor was not injecting the m_LocalClearance setting back...

pcbnew's footprint editor was not injecting the m_LocalClearance setting back into an existing board after a module edit
parent 159d05e3
...@@ -102,9 +102,11 @@ void MODULE::Copy( MODULE* aModule ) ...@@ -102,9 +102,11 @@ void MODULE::Copy( MODULE* aModule )
m_Link = aModule->m_Link; m_Link = aModule->m_Link;
m_Path = aModule->m_Path; //is this correct behavior? m_Path = aModule->m_Path; //is this correct behavior?
m_TimeStamp = GetTimeStamp(); m_TimeStamp = GetTimeStamp();
m_LocalSolderMaskMargin = aModule->m_LocalSolderMaskMargin;
m_LocalSolderPasteMargin = aModule->m_LocalSolderPasteMargin; m_LocalClearance = aModule->m_LocalClearance;
m_LocalSolderPasteMarginRatio = aModule->m_LocalSolderPasteMarginRatio; m_LocalSolderMaskMargin = aModule->m_LocalSolderMaskMargin;
m_LocalSolderPasteMargin = aModule->m_LocalSolderPasteMargin;
m_LocalSolderPasteMarginRatio = aModule->m_LocalSolderPasteMarginRatio;
/* Copy reference and value. */ /* Copy reference and value. */
m_Reference->Copy( aModule->m_Reference ); m_Reference->Copy( aModule->m_Reference );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment