mirror of
https://github.com/gnustep/apps-projectcenter.git
synced 2025-03-13 14:13:02 +00:00
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:
parent
0e1fad82d3
commit
dab7063bc1
2 changed files with 8 additions and 0 deletions
|
@ -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
|
||||
|
|
|
@ -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];
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue