From f073db7f4c3cf06b4a1a2c5270c93a72986d80c8 Mon Sep 17 00:00:00 2001 From: Christian Kandeler Date: Tue, 28 Nov 2023 18:19:48 +0100 Subject: [PATCH] ProjectExplorer: Fix "unavailable" annotation of fixed run configs Amends 058a931d271ee544ffce48654ff1c21f67da47e1. Fixes: QTCREATORBUG-29983 Change-Id: I4db546d1370909b55d6662d403be10e263c4e878 Reviewed-by: Reviewed-by: hjk --- src/plugins/projectexplorer/runconfiguration.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/projectexplorer/runconfiguration.cpp b/src/plugins/projectexplorer/runconfiguration.cpp index 4a1e03d031d..8c74b331db6 100644 --- a/src/plugins/projectexplorer/runconfiguration.cpp +++ b/src/plugins/projectexplorer/runconfiguration.cpp @@ -689,7 +689,7 @@ bool FixedRunConfigurationFactory::supportsBuildKey(Target *target, const QStrin { Q_UNUSED(target) Q_UNUSED(key) - return false; + return true; } } // namespace ProjectExplorer