mirror of
https://github.com/SpartanJ/eepp.git
synced 2026-08-06 23:09:31 +03:00
ecode:
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:
@@ -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 ) {
|
||||
|
||||
Reference in New Issue
Block a user