diff --git a/eeschema/tools/sch_editor_control.cpp b/eeschema/tools/sch_editor_control.cpp index 70144f5e52..23cb07db34 100644 --- a/eeschema/tools/sch_editor_control.cpp +++ b/eeschema/tools/sch_editor_control.cpp @@ -51,6 +51,7 @@ #include #include #include +#include int SCH_EDITOR_CONTROL::New( const TOOL_EVENT& aEvent ) { @@ -470,9 +471,15 @@ int SCH_EDITOR_CONTROL::SimProbe( const TOOL_EVENT& aEvent ) SCH_PIN* pin = (SCH_PIN*) item; SCH_COMPONENT* comp = (SCH_COMPONENT*) item->GetParent(); wxString param; + wxString primitive; - if( comp->GetPins().size() <= 2 ) + primitive = NETLIST_EXPORTER_PSPICE::GetSpiceField( SF_PRIMITIVE, comp, 0 ); + primitive.LowerCase(); + + if( primitive == "c" || primitive == "l" || primitive == "r" ) param = wxT( "I" ); + else if( primitive == "d" ) + param = wxT( "Id" ); else param = wxString::Format( wxT( "I%s" ), pin->GetName().Lower() );