mirror of
https://github.com/SpartanJ/eepp.git
synced 2026-06-05 04:56:31 +03:00
eepp: UITabWidget now let you set how a tab should be focused when the current focused tab is closed (search for the closest tab or focus the previous focused tab).
ecode: Document Info is shown in the status bar if the status bar is present. Fixed a bug when parsing the file path of a status build issue.
This commit is contained in:
@@ -116,7 +116,9 @@ bool StatusBuildOutputController::searchFindAndAddStatusResult(
|
||||
status.message = subtxt.substr( 0, nl );
|
||||
}
|
||||
} else if ( pattern.config.patternOrder.file == i ) {
|
||||
status.file = FileSystem::getRealPath( cmd->workingDir + subtxt );
|
||||
status.file = !subtxt.empty() && subtxt[0] == '.'
|
||||
? FileSystem::getRealPath( cmd->workingDir + subtxt )
|
||||
: FileSystem::getRealPath( subtxt );
|
||||
status.fileName = FileSystem::fileNameFromPath( status.file );
|
||||
} else if ( pattern.config.patternOrder.line == i ) {
|
||||
int l;
|
||||
|
||||
Reference in New Issue
Block a user