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,6 +102,8 @@ void MODULE::Copy( MODULE* aModule )
m_Link = aModule->m_Link;
m_Path = aModule->m_Path; //is this correct behavior?
m_TimeStamp = GetTimeStamp();
m_LocalClearance = aModule->m_LocalClearance;
m_LocalSolderMaskMargin = aModule->m_LocalSolderMaskMargin;
m_LocalSolderPasteMargin = aModule->m_LocalSolderPasteMargin;
m_LocalSolderPasteMarginRatio = aModule->m_LocalSolderPasteMarginRatio;
......
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