Spice simulator: do not display V(0) in the signals list
This commit is contained in:
parent
539d12b08f
commit
4d6947b56a
|
@ -54,7 +54,7 @@ bool DIALOG_SIGNAL_LIST::TransferDataToWindow()
|
||||||
// Voltage list
|
// Voltage list
|
||||||
for( const auto& net : m_exporter->GetNetIndexMap() )
|
for( const auto& net : m_exporter->GetNetIndexMap() )
|
||||||
{
|
{
|
||||||
if( net.first != "GND" )
|
if( net.first != "GND" && net.first != "0" )
|
||||||
m_signals->Append( wxString::Format( "V(%s)", net.first ) );
|
m_signals->Append( wxString::Format( "V(%s)", net.first ) );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue