mirror of
https://github.com/gnustep/apps-projectcenter.git
synced 2025-03-18 16:41:35 +00:00
* Framework/PCEditorManager.m: Scroll to and select the line that
the debugger has stopped at. * Modules/Debuggers/ProjectCenter/PCDebuggerView.m: bring the debugger window to the front when a breakpoint is detected. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/projectcenter/trunk@27430 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
1d1c796f67
commit
ca0d589c85
3 changed files with 10 additions and 2 deletions
|
@ -1,3 +1,10 @@
|
|||
2008-12-26 13:01-EST Gregory John Casamento <greg_casamento@yahoo.com>
|
||||
|
||||
* Framework/PCEditorManager.m: Scroll to and select the line that
|
||||
the debugger has stopped at.
|
||||
* Modules/Debuggers/ProjectCenter/PCDebuggerView.m: bring the debugger
|
||||
window to the front when a breakpoint is detected.
|
||||
|
||||
2008-12-26 02:25-EST Gregory John Casamento <greg_casamento@yahoo.com>
|
||||
|
||||
* Framework/PCEditorManager.m
|
||||
|
|
|
@ -398,8 +398,8 @@ NSString *PCEditorDidResignActiveNotification =
|
|||
NSString *line = [object objectForKey: @"line"];
|
||||
id<CodeEditor> editor = [self openEditorForFile: filePath
|
||||
editable: YES
|
||||
windowed: YES];
|
||||
|
||||
windowed: NO];
|
||||
[editor scrollToLineNumber: [line intValue]];
|
||||
NSLog(@"object = %@", [aNotif object]);
|
||||
}
|
||||
|
||||
|
|
|
@ -80,6 +80,7 @@
|
|||
[NOTIFICATION_CENTER
|
||||
postNotificationName: PCProjectBreakpointNotification
|
||||
object: dict];
|
||||
[[self window] makeKeyAndOrderFront: self];
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue