mirror of
https://github.com/SpartanJ/eepp.git
synced 2026-08-11 01:01:25 +03:00
Fix: When build is triggered with unsaved files don't display the file save dialog for files that are just in text buffer.
Fix: Ctrl+W does not close the tab in Build Settings: Added Event::OnFocusWithin so the tab widget registers that event to setCurrenWidget in UICodeEditorSplitter.
This commit is contained in:
@@ -765,7 +765,7 @@ void ProjectBuildManager::buildCurrentConfig( StatusBuildOutputController* sboc,
|
||||
if ( sboc && !isBuilding() && !getBuilds().empty() ) {
|
||||
const ProjectBuild* build = getCurrentBuild();
|
||||
if ( build ) {
|
||||
mApp->saveAll();
|
||||
mApp->saveAll( false );
|
||||
sboc->runBuild( build->getName(), mConfig.buildType,
|
||||
getOutputParser( build->getName() ), false, doneFn );
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user