From 6a3279d59840d0b978f9df11a416ca31c343d533 Mon Sep 17 00:00:00 2001 From: Gregory John Casamento Date: Sat, 18 Oct 2008 22:16:05 +0000 Subject: [PATCH] * ChangeLog: Moved to here top level of project. * Documentation/ChangeLog: Removed from here... * Modules/Editors/ProjectCenter/PCEditor.m: Corrected an issue in the windowDidResignKey: method which was making the window the first responder. This was preventing Find from working properly. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/projectcenter/trunk@26933 72102866-910b-0410-8b05-ffd578937521 --- Documentation/ChangeLog => ChangeLog | 8 ++++++++ Modules/Editors/ProjectCenter/PCEditor.m | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) rename Documentation/ChangeLog => ChangeLog (98%) diff --git a/Documentation/ChangeLog b/ChangeLog similarity index 98% rename from Documentation/ChangeLog rename to ChangeLog index 204b7d9..1e9ab12 100644 --- a/Documentation/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +2008-10-18 18:18-EDT Gregory John Casamento + + * ChangeLog: Moved to here top level of project. + * Documentation/ChangeLog: Removed from here... + * Modules/Editors/ProjectCenter/PCEditor.m: Corrected an issue in the + windowDidResignKey: method which was making the window the first + responder. This was preventing Find from working properly. + 2008-02-20 Sergii Stoian * Framework/PCProjectBuilder.m: diff --git a/Modules/Editors/ProjectCenter/PCEditor.m b/Modules/Editors/ProjectCenter/PCEditor.m index 825255a..b8945f2 100644 --- a/Modules/Editors/ProjectCenter/PCEditor.m +++ b/Modules/Editors/ProjectCenter/PCEditor.m @@ -755,7 +755,7 @@ { if ([[aNotification object] isEqual:_window] && [_window isVisible]) { - [_window makeFirstResponder:_window]; + [_window makeFirstResponder:_extEditorView]; } }