Commit 6767a0b2 authored by Guillaume Simard's avatar Guillaume Simard Committed by Wayne Stambaugh

Make CvPcb correctly preview the selected component footprint if one has already been assigned.

parent 95891006
...@@ -26,11 +26,6 @@ Common ...@@ -26,11 +26,6 @@ Common
but is now in scripts/python/ky temporarily. but is now in scripts/python/ky temporarily.
CvPCB
-----
* Preview of the already assigned footprint.
EESchema EESchema
-------- --------
* Drag and drop between two EESchema windows. * Drag and drop between two EESchema windows.
......
...@@ -525,6 +525,25 @@ void CVPCB_MAINFRAME::OnSelectComponent( wxListEvent& event ) ...@@ -525,6 +525,25 @@ void CVPCB_MAINFRAME::OnSelectComponent( wxListEvent& event )
} }
m_FootprintList->SetFootprintFilteredList( &m_components[ selection ], m_footprints ); m_FootprintList->SetFootprintFilteredList( &m_components[ selection ], m_footprints );
// Preview of the already assigned footprint.
// Find the footprint that was already choosen for this component and select it.
wxString module = *(&m_components[ selection ].m_Module);
for( int ii = 0; ii < m_FootprintList->GetCount(); ii++ )
{
wxString footprintName;
wxString msg = (*m_FootprintList->m_ActiveFootprintList)[ii];
msg.Trim( true );
msg.Trim( false );
footprintName = msg.AfterFirst( wxChar( ' ' ) );
if( module.Cmp( footprintName ) == 0 )
m_FootprintList->SetSelection( ii, true );
else
m_FootprintList->SetSelection( ii, false );
}
SendMessageToEESCHEMA(); SendMessageToEESCHEMA();
DisplayStatus(); DisplayStatus();
} }
...@@ -660,13 +679,13 @@ void CVPCB_MAINFRAME::SendMessageToEESCHEMA() ...@@ -660,13 +679,13 @@ void CVPCB_MAINFRAME::SendMessageToEESCHEMA()
selection = m_ListCmp->GetSelection(); selection = m_ListCmp->GetSelection();
if ( selection < 0 ) if ( selection < 0 )
selection = 0; selection = 0;
if( &m_components[ selection ] == NULL ) if( &m_components[ selection ] == NULL )
return; return;
Component = &m_components[ selection ]; Component = &m_components[ selection ];
sprintf( cmd, "$PART: \"%s\"", TO_UTF8( Component->m_Reference ) ); sprintf( cmd, "$PART: \"%s\"", TO_UTF8( Component->m_Reference ) );
......
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