Better sorting within sections (voltage, current, power).

Fixes https://gitlab.com/kicad/code/kicad/issues/13846
This commit is contained in:
Jeff Young 2023-02-12 23:15:54 +00:00
parent 499b58f505
commit 74eb587291
1 changed files with 12 additions and 0 deletions

View File

@ -779,6 +779,18 @@ void SIM_PLOT_FRAME::rebuildSignalsList()
if( directive.Upper().StartsWith( wxS( ".PROBE" ), &directiveParams ) )
m_signals.push_back( directiveParams.Trim( false ) );
}
std::sort( m_signals.begin(), m_signals.end(),
[]( const wxString& lhs, const wxString& rhs )
{
// Sort voltages first
if( lhs.StartsWith( 'V' ) && !rhs.StartsWith( 'V' ) )
return true;
else if( !lhs.StartsWith( 'V' ) && rhs.StartsWith( 'V' ) )
return false;
return StrNumCmp( lhs, rhs, true /* ignore case */ ) < 0;
} );
}