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]; } }