diff options
author | Christian Kandeler <[email protected]> | 2025-01-20 15:25:08 +0100 |
---|---|---|
committer | Christian Kandeler <[email protected]> | 2025-01-20 15:49:57 +0000 |
commit | d38f7f74d4e38ba9bfe082fe89ad80da80b37a62 (patch) | |
tree | 0146f1dbba7cdf777bf3281c712343b4f9186c95 /src | |
parent | 596353c25dbd6db656533011da94485f9c42ff55 (diff) |
ProjectExplorer: Use expanded display name
... in "build for run config" action
Fixes: QTCREATORBUG-32350
Change-Id: Idf3c8acd6032fccc84d029acb357106d3eef3507
Reviewed-by: hjk <[email protected]>
Diffstat (limited to 'src')
-rw-r--r-- | src/plugins/projectexplorer/projectexplorer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/projectexplorer/projectexplorer.cpp b/src/plugins/projectexplorer/projectexplorer.cpp index 391a6cde174..9d3c8c4ed3a 100644 --- a/src/plugins/projectexplorer/projectexplorer.cpp +++ b/src/plugins/projectexplorer/projectexplorer.cpp @@ -2711,7 +2711,7 @@ void ProjectExplorerPluginPrivate::updateActions() m_buildAction->setParameter(projectName); m_buildProjectForAllConfigsAction->setParameter(projectName); if (runConfig) - m_buildForRunConfigAction->setParameter(runConfig->displayName()); + m_buildForRunConfigAction->setParameter(runConfig->expandedDisplayName()); m_buildAction->setEnabled(buildActionState.first); m_buildProjectForAllConfigsAction->setEnabled(buildActionState.first); |