ListView.st
changeset 1450 4ae9757ed852
parent 1448 4220c80ab099
child 1451 3598c65cd89d
--- a/ListView.st	Wed Feb 18 12:55:01 1998 +0100
+++ b/ListView.st	Sat Feb 21 17:15:53 1998 +0100
@@ -1449,14 +1449,13 @@
                 ]
             ] ifTrue:[
                 "start/end col is the same for all lines"
-
                 startCol := self colOfX:x inVisibleLine:startLine.
                 endCol := self colOfX:(x + w) inVisibleLine:startLine.
                 startCol > 0 ifTrue:[
                     endCol > 0 ifTrue:[
                         startLine to:stopLine do:[:i |
                             line := self visibleAt:i.
-                            (i isMemberOf:String) ifTrue:[
+                            (line isMemberOf:String) ifTrue:[
                                 self redrawVisibleLine:i from:startCol to:endCol
                             ] ifFalse:[
                                 self redrawVisibleLine:i
@@ -3770,5 +3769,5 @@
 !ListView class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libwidg/ListView.st,v 1.148 1998-02-13 21:56:03 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libwidg/ListView.st,v 1.149 1998-02-21 16:15:53 ca Exp $'
 ! !