From f5d1b819abb471d9177671d618850831b4ce4051 Mon Sep 17 00:00:00 2001 From: Doronin Stanislav Date: Thu, 17 Feb 2022 18:27:20 +0300 Subject: [PATCH] force-unix-separators --- src/plugins/projectexplorer/projectexplorer.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/plugins/projectexplorer/projectexplorer.cpp b/src/plugins/projectexplorer/projectexplorer.cpp index 46db919..2956829 100644 --- a/src/plugins/projectexplorer/projectexplorer.cpp +++ b/src/plugins/projectexplorer/projectexplorer.cpp @@ -2115,6 +2115,7 @@ void ProjectExplorerPlugin::extensionsInitialized() QStringList filterStrings; dd->m_documentFactory.setOpener([](FilePath filePath) { + filePath = FilePath::fromString(QDir::cleanPath(filePath.toString())); if (filePath.isDir()) { const QStringList files = FolderNavigationWidget::projectFilesInDirectory(filePath.absoluteFilePath().toString()); -- 2.33.1.windows.1