From 67d22995968c99ab815d1499bc500c2f74187775 Mon Sep 17 00:00:00 2001 From: Christian Kandeler Date: Tue, 14 Jan 2025 12:04:18 +0100 Subject: [PATCH] ProjectExplorer: Mark imported build configurations This is useful information to convey to the user. Task-number: QTCREATORBUG-31567 Change-Id: I9627e5730dd821cbcca56fb7f97f615e2b523ed9 Reviewed-by: Christian Stenger --- src/plugins/projectexplorer/projectimporter.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/plugins/projectexplorer/projectimporter.cpp b/src/plugins/projectexplorer/projectimporter.cpp index 6ffa9984b51..c384cc3b561 100644 --- a/src/plugins/projectexplorer/projectimporter.cpp +++ b/src/plugins/projectexplorer/projectimporter.cpp @@ -139,6 +139,7 @@ const QList ProjectImporter::import(const Utils::FilePath &importPath auto factory = BuildConfigurationFactory::find(k, projectFilePath()); for (BuildInfo i : infoList) { + i.displayName = Tr::tr("%1 (imported)").arg(i.displayName); i.kitId = k->id(); i.factory = factory; if (!result.contains(i))