pcbnew's footprint editor was not injecting the m_LocalClearance setting back into an existing board after a module edit
This commit is contained in:
parent
159d05e384
commit
1247401ea9
|
@ -102,9 +102,11 @@ void MODULE::Copy( MODULE* aModule )
|
|||
m_Link = aModule->m_Link;
|
||||
m_Path = aModule->m_Path; //is this correct behavior?
|
||||
m_TimeStamp = GetTimeStamp();
|
||||
m_LocalSolderMaskMargin = aModule->m_LocalSolderMaskMargin;
|
||||
m_LocalSolderPasteMargin = aModule->m_LocalSolderPasteMargin;
|
||||
m_LocalSolderPasteMarginRatio = aModule->m_LocalSolderPasteMarginRatio;
|
||||
|
||||
m_LocalClearance = aModule->m_LocalClearance;
|
||||
m_LocalSolderMaskMargin = aModule->m_LocalSolderMaskMargin;
|
||||
m_LocalSolderPasteMargin = aModule->m_LocalSolderPasteMargin;
|
||||
m_LocalSolderPasteMarginRatio = aModule->m_LocalSolderPasteMarginRatio;
|
||||
|
||||
/* Copy reference and value. */
|
||||
m_Reference->Copy( aModule->m_Reference );
|
||||
|
|
Loading…
Reference in New Issue