refactor: 修复Panel窗口关闭行为并优化ProjectManager路径处理
This commit is contained in:
@@ -102,7 +102,7 @@ std::wstring ProjectManager::GetCurrentFullPathW() const {
|
||||
if (m_path.empty()) return Utf8ToWstring(m_projectPath);
|
||||
|
||||
std::wstring fullPath = Utf8ToWstring(m_projectPath);
|
||||
for (size_t i = 1; i < m_path.size(); i++) {
|
||||
for (size_t i = 0; i < m_path.size(); i++) {
|
||||
fullPath += L"/" + Utf8ToWstring(m_path[i]->name);
|
||||
}
|
||||
return fullPath;
|
||||
|
||||
Reference in New Issue
Block a user