7
mirror of https://gitlab.com/kicad/code/kicad.git synced 2025-04-21 00:21:25 +00:00

Show output path in special execute after reopening

Fixes https://gitlab.com/kicad/code/kicad/-/issues/19468
This commit is contained in:
Marek Roszko 2025-01-03 23:50:07 -05:00
parent afd2406adc
commit 1efc4544c9

View File

@ -47,6 +47,7 @@ bool DIALOG_EXECUTECOMMAND_JOB_SETTINGS::TransferDataToWindow()
m_cbIgnoreExitCode->SetValue( m_job->m_ignoreExitcode );
m_cbRecordOutput->SetValue( m_job->m_recordOutput );
m_textCtrlOutputPath->SetValue( m_job->GetOutputPath() );
m_textCtrlOutputPath->Enable( m_cbRecordOutput->GetValue() );
return true;