mirror of
https://github.com/SpartanJ/eepp.git
synced 2026-06-05 04:56:31 +03:00
eepp:
Added Window::flash(). FileSystemModel will not spam invalidations when not needed. UIAbstractTableView and UIAbstractView won't queue more than 1 invalidation per frame when invalidations comes from a non-main thread. ecode: UniversalLocator now understands pasted file paths (with and withouth cursor position) and allows to go to that file and position.
This commit is contained in:
@@ -257,6 +257,9 @@ void StatusBuildOutputController::runBuild( const std::string& buildName,
|
||||
if ( cleanButton )
|
||||
cleanButton->setEnabled( true );
|
||||
}
|
||||
|
||||
if ( !mApp->getWindow()->hasFocus() )
|
||||
mApp->getWindow()->flash( WindowFlashOperation::Briefly );
|
||||
} );
|
||||
|
||||
if ( !res.isValid() ) {
|
||||
@@ -344,6 +347,9 @@ void StatusBuildOutputController::runClean( const std::string& buildName,
|
||||
if ( buildButton )
|
||||
buildButton->setEnabled( true );
|
||||
}
|
||||
|
||||
if ( !mApp->getWindow()->hasFocus() )
|
||||
mApp->getWindow()->flash( WindowFlashOperation::Briefly );
|
||||
} );
|
||||
|
||||
if ( !res.isValid() ) {
|
||||
|
||||
Reference in New Issue
Block a user