summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Kandeler <christian.kandeler@qt.io>2017-06-20 14:28:45 +0200
committerChristian Kandeler <christian.kandeler@qt.io>2017-06-20 13:27:31 +0000
commit0652297f5adaacee924d3d4fbaaf1db205432f54 (patch)
treea08537de994784252b24fc05435f29885793a974
parent4e96f2ce22e1a01b08b196e9b940034d50b87460 (diff)
downloadqt-creator-0652297f5adaacee924d3d4fbaaf1db205432f54.tar.gz
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 <orgads@gmail.com> Reviewed-by: Tobias Hunger <tobias.hunger@qt.io> Reviewed-by: Eike Ziller <eike.ziller@qt.io>
-rw-r--r--src/plugins/projectexplorer/appoutputpane.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/plugins/projectexplorer/appoutputpane.cpp b/src/plugins/projectexplorer/appoutputpane.cpp
index b43f3f3804..b7189bbb1c 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);