Remove library nickname from module position file

This commit is contained in:
Michal Jahelka 2014-10-31 21:18:25 +00:00 committed by Brian Sidebotham
parent 03d50b2213
commit 835bb37b88
1 changed files with 1 additions and 1 deletions

View File

@ -493,7 +493,7 @@ int PCB_EDIT_FRAME::DoGenFootprintsPositionFile( const wxString& aFullFileName,
const wxString& ref = list[ii].m_Reference;
const wxString& val = list[ii].m_Value;
const wxString& pkg = list[ii].m_Module->GetFPID().Format();
const wxString& pkg = list[ii].m_Module->GetFPID().GetFootprintName();
sprintf( line, "%-8.8s %-16.16s %-16.16s",
TO_UTF8( ref ), TO_UTF8( val ), TO_UTF8( pkg ) );