Don't overwrite linearize command with fft command.

Fixes https://gitlab.com/kicad/code/kicad/-/issues/16011
This commit is contained in:
Jeff Young 2023-11-04 15:08:05 +00:00
parent b2825663be
commit b6e1387e18
1 changed files with 2 additions and 1 deletions

View File

@ -367,6 +367,7 @@ bool DIALOG_SIM_COMMAND::TransferDataFromWindow()
}
else if( page == m_pgFFT ) // Fast Fourier transform
{
m_simCommand = wxEmptyString;
wxString vectors;
for( int ii = 0; ii < (int) m_inputSignalsList->GetCount(); ++ii )
@ -378,7 +379,7 @@ bool DIALOG_SIM_COMMAND::TransferDataFromWindow()
if( m_linearize->IsChecked() )
m_simCommand = wxT( "linearize" ) + vectors + wxS( "\n" );
m_simCommand = wxT( "fft" ) + vectors;
m_simCommand += wxT( "fft" ) + vectors;
}
else if( page == m_pgPZ ) // Pole-zero analyses
{