From f48c3cc8d72517f20b9dc50bed4cdab6499733e7 Mon Sep 17 00:00:00 2001 From: hjk Date: Wed, 9 Apr 2025 16:38:33 +0200 Subject: [PATCH] ProjectExplorer: Switch order of user and backend notification ... in the code of processRecipe(). This doesn't make a practical difference as the backend acts asyncronously, but it looks more logical in code. Change-Id: Ibdec796f0ceb1f1e0a1e5ebd99f15457d88350e7 Reviewed-by: Jarek Kobus --- src/plugins/projectexplorer/runcontrol.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/projectexplorer/runcontrol.cpp b/src/plugins/projectexplorer/runcontrol.cpp index b6ca010aa14..cb0db46c035 100644 --- a/src/plugins/projectexplorer/runcontrol.cpp +++ b/src/plugins/projectexplorer/runcontrol.cpp @@ -1740,8 +1740,8 @@ Group processRecipe(RunControl *runControl, } QObject::connect(runStorage().activeStorage(), &RunInterface::canceled, &process, [runControl, process = &process] { - process->stop(); runControl->postMessage(Tr::tr("Requesting process to stop ...."), NormalMessageFormat); + process->stop(); }); return SetupResult::Continue; };