We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c770650 + 110e625 commit 50fd85bCopy full SHA for 50fd85b
1 file changed
ImGuiFileDialog.cpp
@@ -2277,6 +2277,9 @@ std::string IGFD::FileManager::ComposeNewPath(std::vector<std::string>::iterator
2277
#ifdef _IGFD_UNIX_ // _IGFD_UNIX_ is _IGFD_WIN_ or APPLE
2278
if (res[0] != PATH_SEP)
2279
res = PATH_SEP + res;
2280
+#else
2281
+ if (res.back() != PATH_SEP)
2282
+ res.push_back(PATH_SEP);
2283
#endif // defined(_IGFD_UNIX_)
2284
break;
2285
}
0 commit comments