Tools__CodeView2.st
changeset 18619 cb4a479b9922
parent 18600 5d39ca1a04f8
child 18642 7e2c1db00573
--- a/Tools__CodeView2.st	Sun Feb 24 12:14:59 2019 +0100
+++ b/Tools__CodeView2.st	Tue Feb 26 15:22:50 2019 +0100
@@ -1,3 +1,5 @@
+"{ Encoding: utf8 }"
+
 "
  COPYRIGHT (c) 2010 by Jan Vrany, SWING Research Group. CTU in Prague
               All Rights Reserved
@@ -1162,8 +1164,10 @@
     ] ifFalse:[
         "/ yep, there are some annotations
         newBackground := AnnotationShowingScrollerBackground new.
-        newBackground textView:textView.
-        newBackground annotations:allAnnotations; breakpoints:allBreakpoints.
+        newBackground 
+            textView:textView;
+            annotations:allAnnotations; 
+            breakpoints:allBreakpoints.
 
         scroller notNil ifTrue:[
             scroller viewBackground:newBackground.
@@ -1173,6 +1177,8 @@
     scroller notNil ifTrue:[
         scroller invalidate.
     ].
+
+    "Modified: / 26-02-2019 / 13:37:08 / Claus Gittinger"
 ! !
 
 !CodeView2 methodsFor:'channels'!