when commenting, do all without change notifications,
authorClaus Gittinger <cg@exept.de>
Fri, 07 May 1999 09:25:17 +0200
changeset 1903 86d3493c6a59
parent 1902 302a68c2255e
child 1904 9f887101f2b0
when commenting, do all without change notifications, then send a single textChanged at the end.
Workspace.st
--- a/Workspace.st	Fri May 07 09:24:43 1999 +0200
+++ b/Workspace.st	Fri May 07 09:25:17 1999 +0200
@@ -382,7 +382,7 @@
         ] ifFalse:[
             l := opening , l , closing
         ].
-        self at:lineNr put:l
+        self at:lineNr basicPut:l
     ].
     self textChanged.
 
@@ -455,7 +455,7 @@
                     l := l copyWithoutLast:closing size.
                 ]
             ].
-            self at:lineNr put:l
+            self at:lineNr basicPut:l
         ]
     ].
     self textChanged.
@@ -850,5 +850,5 @@
 !Workspace class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libwidg/Workspace.st,v 1.66 1999-05-06 15:09:57 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libwidg/Workspace.st,v 1.67 1999-05-07 07:25:17 cg Exp $'
 ! !