diff --git a/src/plugins/studiowelcome/studiowelcomeplugin.cpp b/src/plugins/studiowelcome/studiowelcomeplugin.cpp index 7878ba1c963..b873f76771a 100644 --- a/src/plugins/studiowelcome/studiowelcomeplugin.cpp +++ b/src/plugins/studiowelcome/studiowelcomeplugin.cpp @@ -481,7 +481,10 @@ QVariant ProjectModel::data(const QModelIndex &index, int role) const case FilePathRole: return data.filePath.toVariant(); case PrettyFilePathRole: - return data.filePath.absolutePath().withTildeHomePath(); + if (Utils::HostOsInfo::isWindowsHost()) + return data.filePath.absolutePath().nativePath(); + else + return data.filePath.absolutePath().withTildeHomePath(); case PreviewUrl: return QVariant( QStringLiteral("image://project_preview/")