*** empty log message ***
authorClaus Gittinger <cg@exept.de>
Thu, 31 Oct 2002 14:50:50 +0100
changeset 2654 a183d27e53a3
parent 2653 441d15cf7fba
child 2655 3648be6af751
*** empty log message ***
ListView.st
--- a/ListView.st	Thu Oct 31 13:22:50 2002 +0100
+++ b/ListView.st	Thu Oct 31 14:50:50 2002 +0100
@@ -1657,7 +1657,7 @@
         ^ self
     ].
 
-    col > len ifTrue:[
+    (lineString isNil or:[col > len]) ifTrue:[
         self fillRectangleX:x y:yf width:(font width) height:fontHeight.
         self paint:fg
     ] ifFalse:[
@@ -4458,5 +4458,5 @@
 !ListView class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libwidg/ListView.st,v 1.276 2002-10-29 10:18:16 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libwidg/ListView.st,v 1.277 2002-10-31 13:50:50 cg Exp $'
 ! !