kludge workaround selectionEndLine bug
authorClaus Gittinger <cg@exept.de>
Fri, 02 May 2003 19:52:15 +0200
changeset 2740 892dfb6b0da1
parent 2739 199c79b11aa9
child 2741 2f563c1ab4b7
kludge workaround selectionEndLine bug
TextView.st
--- a/TextView.st	Tue Apr 29 17:16:58 2003 +0200
+++ b/TextView.st	Fri May 02 19:52:15 2003 +0200
@@ -2139,9 +2139,9 @@
         end := nLinesShown
     ].
 
-"/    selectionEndLine isNil ifTrue:[
-"/        selectionStartLine := nil
-"/    ].
+    selectionEndLine isNil ifTrue:[
+        selectionStartLine := nil
+    ].
 
     selectionStartLine isNil ifTrue:[
         specialCare := false
@@ -3617,7 +3617,7 @@
 !TextView class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libwidg/TextView.st,v 1.200 2003-04-22 13:10:30 penk Exp $'
+    ^ '$Header: /cvs/stx/stx/libwidg/TextView.st,v 1.201 2003-05-02 17:52:15 cg Exp $'
 ! !
 
 TextView initialize!