Make sure whitespace at end of command doesn't mess up detection.
(Fixes the failing test case.)
This commit is contained in:
parent
22bca5c2a0
commit
4917abe655
|
@ -96,7 +96,7 @@ SIM_TYPE NGSPICE_CIRCUIT_MODEL::GetSimType()
|
|||
|
||||
SIM_TYPE NGSPICE_CIRCUIT_MODEL::CommandToSimType( const wxString& aCmd )
|
||||
{
|
||||
wxString cmd = aCmd.Lower();
|
||||
wxString cmd = aCmd.Lower().Trim();
|
||||
|
||||
if( cmd.StartsWith( wxT( ".ac" ) ) )
|
||||
return ST_AC;
|
||||
|
|
Loading…
Reference in New Issue