From 323406d947a6c5c7fecb7026ff87fe2a706e817d Mon Sep 17 00:00:00 2001 From: hjk Date: Tue, 11 Dec 2012 17:37:02 +0100 Subject: [PATCH] Disable undo in application output pane The undo stack was growing endlessly, even if the size of the output pane is limited. Task-number: QTCREATORBUG-8402 Change-Id: I605166f691945b66cbb11f1eaa3f6729df6f6d16 Reviewed-by: hjk --- src/plugins/coreplugin/outputwindow.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/plugins/coreplugin/outputwindow.cpp b/src/plugins/coreplugin/outputwindow.cpp index 69b0467076f..f9dc33858f7 100644 --- a/src/plugins/coreplugin/outputwindow.cpp +++ b/src/plugins/coreplugin/outputwindow.cpp @@ -59,6 +59,7 @@ OutputWindow::OutputWindow(Core::Context context, QWidget *parent) //setCenterOnScroll(false); setFrameShape(QFrame::NoFrame); setMouseTracking(true); + setUndoRedoEnabled(false); m_outputWindowContext = new Core::IContext; m_outputWindowContext->setContext(context);