Added support for data:image URIs.

StyleSheetPropertiesParser: fix quoted text reading.
ecode: ProjectDirectoryTree fix recursive directories scan.
This commit is contained in:
Martín Lucas Golini
2022-08-06 03:06:16 -03:00
parent b11b436903
commit 46dad2ac63
6 changed files with 134 additions and 32 deletions

View File

@@ -167,6 +167,9 @@ void ProjectDirectoryTree::getDirectoryFiles( std::vector<std::string>& files,
FileSystem::dirAddSlashAtEnd( fullpath );
if ( currentDirs.find( fullpath ) == currentDirs.end() )
continue;
if ( std::find( mDirectories.begin(), mDirectories.end(), fullpath ) !=
mDirectories.end() )
continue;
mDirectories.push_back( fullpath );
} else {
mDirectories.push_back( fullpath );