SelectionInListView.st
branchjv
changeset 5737 98bc0782ffa1
parent 5709 219a28ca67d1
parent 5720 8747337be41f
child 5808 ed5f9b2098ea
--- a/SelectionInListView.st	Sat May 07 06:52:44 2016 +0200
+++ b/SelectionInListView.st	Mon May 09 21:43:19 2016 +0200
@@ -2817,7 +2817,7 @@
     lineNr notNil ifTrue:[
         len := self widthOfLine:lineNr.
         len > width ifTrue:[
-            ^ (self listAt:lineNr) collect:[:ch | ch isSeparator ifTrue:[$ ] ifFalse:[ch]]  
+            ^ (self listAt:lineNr) string collect:[:ch | ch isSeparator ifTrue:[$ ] ifFalse:[ch]]  
         ].      
     ].
     ^ nil