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,6 +102,8 @@ 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_LocalClearance = aModule->m_LocalClearance;
|
||||||
m_LocalSolderMaskMargin = aModule->m_LocalSolderMaskMargin;
|
m_LocalSolderMaskMargin = aModule->m_LocalSolderMaskMargin;
|
||||||
m_LocalSolderPasteMargin = aModule->m_LocalSolderPasteMargin;
|
m_LocalSolderPasteMargin = aModule->m_LocalSolderPasteMargin;
|
||||||
m_LocalSolderPasteMarginRatio = aModule->m_LocalSolderPasteMarginRatio;
|
m_LocalSolderPasteMarginRatio = aModule->m_LocalSolderPasteMarginRatio;
|
||||||
|
|
Loading…
Reference in New Issue