From 0652297f5adaacee924d3d4fbaaf1db205432f54 Mon Sep 17 00:00:00 2001 From: Christian Kandeler Date: Tue, 20 Jun 2017 14:28:45 +0200 Subject: [PATCH] AppOutputPane: Do not reset the formatter after the RC has finished Otherwise, clicking on links will have no effect. This feature was broken with commit 113134b3b6. Task-number: QTCREATORBUG-18134 Task-number: QTCREATORBUG-18334 Change-Id: I3cf5d8a9b3957a3f06cb3dbba40bb2dd16a9f8a9 Reviewed-by: Orgad Shaneh Reviewed-by: Tobias Hunger Reviewed-by: Eike Ziller --- src/plugins/projectexplorer/appoutputpane.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/plugins/projectexplorer/appoutputpane.cpp b/src/plugins/projectexplorer/appoutputpane.cpp index b43f3f3804b..b7189bbb1ca 100644 --- a/src/plugins/projectexplorer/appoutputpane.cpp +++ b/src/plugins/projectexplorer/appoutputpane.cpp @@ -743,8 +743,6 @@ void AppOutputPane::slotRunControlFinished2(RunControl *sender) if (current && current == sender) enableButtons(current, false); // RunControl::isRunning() cannot be trusted in signal handler. - m_runControlTabs.at(senderIndex).window->setFormatter(nullptr); // Reset formater for this RC - // Check for asynchronous close. Close the tab. if (m_runControlTabs.at(senderIndex).asyncClosing) closeTab(tabWidgetIndexOf(senderIndex), CloseTabNoPrompt);