Spice simulator: do not display V(0) in the signals list

This commit is contained in:
Maciej Suminski 2018-04-28 00:35:53 +02:00
parent 539d12b08f
commit 4d6947b56a
1 changed files with 1 additions and 1 deletions

View File

@ -54,7 +54,7 @@ bool DIALOG_SIGNAL_LIST::TransferDataToWindow()
// Voltage list
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 ) );
}