First alt-pin menu item must be fetched from the LIB_PIN.

(The SCH_PIN will return any alt function already assigned.)

Fixes https://gitlab.com/kicad/code/kicad/-/issues/17221
This commit is contained in:
Jeff Young 2024-03-02 12:15:50 +00:00
parent 43e1b36d4d
commit c97c69a2f0
1 changed files with 4 additions and 3 deletions

View File

@ -142,12 +142,13 @@ private:
EE_SELECTION_TOOL* selTool = getToolManager()->GetTool<EE_SELECTION_TOOL>();
EE_SELECTION& selection = selTool->GetSelection();
SCH_PIN* pin = dynamic_cast<SCH_PIN*>( selection.Front() );
LIB_PIN* libPin = pin ? pin->GetLibPin() : nullptr;
Clear();
wxCHECK( pin, /* void */ );
wxCHECK( libPin, /* void */ );
wxMenuItem* item = Append( ID_POPUP_SCH_ALT_PIN_FUNCTION, pin->GetName(), wxEmptyString,
wxMenuItem* item = Append( ID_POPUP_SCH_ALT_PIN_FUNCTION, libPin->GetName(), wxEmptyString,
wxITEM_CHECK );
if( pin->GetAlt().IsEmpty() )
@ -155,7 +156,7 @@ private:
int ii = 1;
for( const auto& [ name, definition ] : pin->GetLibPin()->GetAlternates() )
for( const auto& [ name, definition ] : libPin->GetAlternates() )
{
item = Append( ID_POPUP_SCH_ALT_PIN_FUNCTION + ii, name, wxEmptyString, wxITEM_CHECK );