Tools__CodeView2.st
changeset 13062 caed0c14f32c
parent 13057 c3a27ef337d6
child 13072 390ebcd412f8
--- a/Tools__CodeView2.st	Fri Jun 28 10:28:59 2013 +0200
+++ b/Tools__CodeView2.st	Fri Jun 28 10:34:09 2013 +0200
@@ -1919,6 +1919,20 @@
 
 !CodeView2 methodsFor:'realization'!
 
+disableAllServices
+
+    services do:[:service|
+        service enabled:false.
+    ]
+!
+
+enableAllServices
+
+    services do:[:service|
+        service enabled:true.
+    ]
+!
+
 postRealize
 
     services do:[:service|
@@ -2422,7 +2436,7 @@
     lastLineShown := textView lastLineShown - 1 min: numberOfLines.
 
     firstLineShown to:lastLineShown do: [:line | 
-        self redrawLine:line cleared:true drawServices:false
+        self redrawLine:line cleared:true drawServices:true
     ].
 ! !
 
@@ -3542,15 +3556,15 @@
 !CodeView2 class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libtool/Tools__CodeView2.st,v 1.91 2013-06-27 20:53:18 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/Tools__CodeView2.st,v 1.92 2013-06-28 08:34:09 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libtool/Tools__CodeView2.st,v 1.91 2013-06-27 20:53:18 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/Tools__CodeView2.st,v 1.92 2013-06-28 08:34:09 cg Exp $'
 !
 
 version_SVN
-    ^ '$Id: Tools__CodeView2.st,v 1.91 2013-06-27 20:53:18 cg Exp $'
+    ^ '$Id: Tools__CodeView2.st,v 1.92 2013-06-28 08:34:09 cg Exp $'
 ! !