From b6e1387e18ebf7c99f7d22600b05f1b707004f19 Mon Sep 17 00:00:00 2001 From: Jeff Young Date: Sat, 4 Nov 2023 15:08:05 +0000 Subject: [PATCH] Don't overwrite linearize command with fft command. Fixes https://gitlab.com/kicad/code/kicad/-/issues/16011 --- eeschema/dialogs/dialog_sim_command.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/eeschema/dialogs/dialog_sim_command.cpp b/eeschema/dialogs/dialog_sim_command.cpp index 18f10e0a12..f0e0ca9e7c 100644 --- a/eeschema/dialogs/dialog_sim_command.cpp +++ b/eeschema/dialogs/dialog_sim_command.cpp @@ -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 {