Author: gcasa
Date: Mon Jun  6 17:47:39 2016
New Revision: 39839

URL: http://svn.gna.org/viewcvs/gnustep?rev=39839&view=rev
Log:
Add code to make commands appear when buttons are pressed in the debugger.

Modified:
    apps/projectcenter/trunk/ChangeLog
    apps/projectcenter/trunk/Modules/Debuggers/ProjectCenter/PCDebuggerView.m

Modified: apps/projectcenter/trunk/ChangeLog
URL: 
http://svn.gna.org/viewcvs/gnustep/apps/projectcenter/trunk/ChangeLog?rev=39839&r1=39838&r2=39839&view=diff
==============================================================================
--- apps/projectcenter/trunk/ChangeLog  (original)
+++ apps/projectcenter/trunk/ChangeLog  Mon Jun  6 17:47:39 2016
@@ -1,3 +1,8 @@
+2016-06-06 11:47-EDT Gregory John Casamento <[email protected]>
+
+       * Modules/Debuggers/ProjectCenter/PCDebuggerView.m: Add code to
+       make commands appear when the button is pressed.
+
 2016-05-22 Riccardo Mottola <[email protected]>
 
        * Modules/Editors/ProjectCenter/PCEditorView.h

Modified: 
apps/projectcenter/trunk/Modules/Debuggers/ProjectCenter/PCDebuggerView.m
URL: 
http://svn.gna.org/viewcvs/gnustep/apps/projectcenter/trunk/Modules/Debuggers/ProjectCenter/PCDebuggerView.m?rev=39839&r1=39838&r2=39839&view=diff
==============================================================================
--- apps/projectcenter/trunk/Modules/Debuggers/ProjectCenter/PCDebuggerView.m   
(original)
+++ apps/projectcenter/trunk/Modules/Debuggers/ProjectCenter/PCDebuggerView.m   
Mon Jun  6 17:47:39 2016
@@ -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];
 }
 


_______________________________________________
Gnustep-cvs mailing list
[email protected]
https://mail.gna.org/listinfo/gnustep-cvs

Reply via email to