Allow simulation probe of junctions
Fixes https://gitlab.com/kicad/code/kicad/issues/13712
This commit is contained in:
parent
418f8e6f14
commit
8590745e9c
|
@ -519,7 +519,8 @@ int SCH_EDITOR_CONTROL::SimProbe( const TOOL_EVENT& aEvent )
|
|||
DisplayErrorMessage( m_frame, e.What() );
|
||||
}
|
||||
}
|
||||
else if( item->IsType( { SCH_ITEM_LOCATE_WIRE_T } ) )
|
||||
else if( item->IsType( { SCH_ITEM_LOCATE_WIRE_T } )
|
||||
|| item->IsType( { SCH_JUNCTION_T } ) )
|
||||
{
|
||||
if( SCH_CONNECTION* conn = static_cast<SCH_ITEM*>( item )->Connection() )
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue