From e5c80fba6b8d6830dd120217bf04354577a77a01 Mon Sep 17 00:00:00 2001
From: Robert Loehning <robert.loehning@nokia.com>
Date: Mon, 8 Feb 2010 12:19:47 +0100
Subject: [PATCH] Revert "Fixed updating of actions when closing last editor."

This reverts commit a05ba6fd1796c7c49349809934aae325bfd2e3a3.

Fixed the actions but broke handling of Esc-key and navigating to line numbers in locator bar.
---
 src/plugins/coreplugin/editormanager/editormanager.cpp | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/src/plugins/coreplugin/editormanager/editormanager.cpp b/src/plugins/coreplugin/editormanager/editormanager.cpp
index 46fbed6dab2..9056f03519a 100644
--- a/src/plugins/coreplugin/editormanager/editormanager.cpp
+++ b/src/plugins/coreplugin/editormanager/editormanager.cpp
@@ -460,7 +460,11 @@ void EditorManager::handleContextChange(Core::IContext *context)
     if (debugEditorManager)
         qDebug() << Q_FUNC_INFO;
     IEditor *editor = context ? qobject_cast<IEditor*>(context) : 0;
-    setCurrentEditor(editor);
+    if (editor) {
+        setCurrentEditor(editor);
+    } else {
+        updateActions();
+    }
 }
 
 void EditorManager::setCurrentEditor(IEditor *editor, bool ignoreNavigationHistory)
-- 
GitLab