Fix incorrect LIB_ID exported by viewlib when used as component chooser
(was not to the new format libname::symbol_name)
This commit is contained in:
parent
542040c474
commit
c3015f4671
|
@ -648,7 +648,7 @@ void LIB_VIEW_FRAME::ExportToSchematicLibraryPart( wxCommandEvent& event )
|
||||||
|
|
||||||
if( ii >= 0 )
|
if( ii >= 0 )
|
||||||
{
|
{
|
||||||
wxString part_name = m_cmpList->GetString( ii );
|
wxString part_name = m_libraryName + ':' + m_cmpList->GetString( ii );
|
||||||
|
|
||||||
// a selection was made, pass true
|
// a selection was made, pass true
|
||||||
DismissModal( true, part_name );
|
DismissModal( true, part_name );
|
||||||
|
|
Loading…
Reference in New Issue