From 625edd4fce2ca2b86a40d56860666d0023e40f20 Mon Sep 17 00:00:00 2001 From: Marcus Tillmanns Date: Tue, 3 Sep 2024 14:27:55 +0200 Subject: [PATCH] ProjectExplorer: Improve workspace run config description Change-Id: Id2e0443786bbd11092f9069431d73c6ea6a8ae0e Reviewed-by: Leena Miettinen Reviewed-by: Eike Ziller --- src/plugins/projectexplorer/workspaceproject.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/plugins/projectexplorer/workspaceproject.cpp b/src/plugins/projectexplorer/workspaceproject.cpp index 60a117b8ab3..fc1925b97dc 100644 --- a/src/plugins/projectexplorer/workspaceproject.cpp +++ b/src/plugins/projectexplorer/workspaceproject.cpp @@ -176,8 +176,8 @@ public: WorkspaceRunConfiguration(Target *target, Id id) : RunConfiguration(target, id) { - hint.setText( - Tr::tr("You can edit this configuration inside the .qtcreator/project.json file.")); + hint.setText(Tr::tr("Clone the configuration to change it. Or, make the changes in " + "the .qtcreator/project.json file.")); const BuildTargetInfo bti = buildTargetInfo(); executable.setLabelText(Tr::tr("Executable:"));