Add code to make commands appear when buttons are pressed in the debugger.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/projectcenter/trunk@39839 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Gregory John Casamento 2016-06-06 15:47:39 +00:00
parent 0e1fad82d3
commit dab7063bc1
2 changed files with 8 additions and 0 deletions

View file

@ -1,3 +1,8 @@
2016-06-06 11:47-EDT Gregory John Casamento <greg.casamento@gmail.com>
* Modules/Debuggers/ProjectCenter/PCDebuggerView.m: Add code to
make commands appear when the button is pressed.
2016-05-22 Riccardo Mottola <rm@gnu.org>
* Modules/Editors/ProjectCenter/PCEditorView.h

View file

@ -97,6 +97,9 @@
- (void) putString: (NSString *)string
{
NSAttributedString* attr = [[NSAttributedString alloc] initWithString:string];
[[self textStorage] appendAttributedString:attr];
[self scrollRangeToVisible:NSMakeRange([[self string] length], 0)];
[viewDelegate putString:string];
}