Enable extracting PATH from default SHELL for Linux and BSD.
Fixed generic output-parser preset not being set as default.
Added a warning when the binary path is not found in project build steps.
Also print the exit code if process run fails.
Fix wheel scrolling issue.
This commit is contained in:
Martín Lucas Golini
2025-06-15 12:02:43 -03:00
parent e4bf8215a6
commit 1b93c2e45e
4 changed files with 39 additions and 8 deletions

View File

@@ -663,6 +663,13 @@ UIBuildSettings::UIBuildSettings(
} );
} );
if ( isNew && mBuild.mOutputParser.getPreset().empty() &&
!ProjectBuildOutputParser::getPresets().empty() ) {
mBuild.mOutputParser.mPreset = ProjectBuildOutputParser::getPresets().begin()->first;
mBuild.mOutputParser.mPresetConfig =
ProjectBuildOutputParser::getPresets().begin()->second.getConfig();
}
auto outputParserPresetsDDL = find<UIDropDownList>( "output_parsers_presets_list" );
outputParserPresetsDDL->getListBox()->setSelected( mBuild.mOutputParser.mPreset );
outputParserPresetsDDL->on( Event::OnItemSelected, [this]( const Event* event ) {