From a1b486011aa3833b77325554ea4d249e49145f1f Mon Sep 17 00:00:00 2001 From: Christian Stenger Date: Fri, 20 Oct 2017 09:49:36 +0200 Subject: [PATCH] Debugger: Fix placing of finished message This message had been displayed on the Application Output pane before. Restore this behavior which broke with 597488be. Change-Id: I29dcae877f2f19bce05e0ec1f32274b1e7cca25f Reviewed-by: hjk --- src/plugins/debugger/debuggerengine.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/debugger/debuggerengine.cpp b/src/plugins/debugger/debuggerengine.cpp index 2655363da1f..2a5f56048fb 100644 --- a/src/plugins/debugger/debuggerengine.cpp +++ b/src/plugins/debugger/debuggerengine.cpp @@ -238,7 +238,6 @@ public: m_engine->setState(DebuggerFinished); resetLocation(); if (isMasterEngine()) { - showMessage(tr("Debugging has finished"), NormalMessageFormat); if (m_runTool) { m_progress.setProgressValue(1000); m_progress.reportFinished(); @@ -248,6 +247,7 @@ public: m_watchHandler.cleanup(); Internal::runControlFinished(m_runTool); m_runTool->reportStopped(); + m_runTool->appendMessage(tr("Debugging has finished"), NormalMessageFormat); m_runTool.clear(); } }