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:
Martín Lucas Golini
2023-06-15 00:55:56 -03:00
parent c0aabb56d8
commit c29f43ed34
6 changed files with 125 additions and 37 deletions

View File

@@ -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;