Patch #2957 2010-03-24 20:32

cryogen

Partial fix for bug #14087.
Download
2957-Partial_fix_fo.patch (490 bytes)
Category
Application::Bugfix
Status
Accepted
Close date
2011-02-22 16:46
Assigned to
mortenmacfly
Index: src/src/main.cpp
===================================================================
--- src/src/main.cpp    (revision 7020)
+++ src/src/main.cpp    (working copy)
@@ -1711,6 +1711,8 @@
 bool MainFrame::DoOpenFile(const wxString& filename, bool addToHistory)
 {
     cbEditor* ed = Manager::Get()->GetEditorManager()->Open(filename);
+    // Cryogen 24/3/10 Activate the editor after opening. Partial fix for bug #14087.
+    ed->Activate();
     if (ed)
     {
         if (addToHistory)
cryogen 2011-02-21 22:01

Recreated against SVN 7018.