Merge remote-tracking branch 'origin/fix/fix-bugs-v8.0' into develop

This commit is contained in:
Elena.Subbotina
2024-01-30 11:17:40 +03:00
64 changed files with 710 additions and 308 deletions

View File

@ -134,6 +134,7 @@ public:
{
return true;
}
iter++;
}
}
@ -466,8 +467,8 @@ protected:
{
std::string sPath = U_TO_UTF8(path);
if (!sPath.empty() && sPath[0] == '/')
return NSSystemPath::NormalizePath(sPath.substr(1));
return NSSystemPath::NormalizePath(sPath);
return NSSystemPath::NormalizePath(sPath.substr(1), true);
return NSSystemPath::NormalizePath(sPath, true);
}
public: