SelectionInListView.st
changeset 5720 8747337be41f
parent 5707 b4784c2083e0
child 5737 98bc0782ffa1
child 5779 cddfa7b8e2a5
equal deleted inserted replaced
5719:c1b417fd14a0 5720:8747337be41f
  2815 
  2815 
  2816     lineNr := self lineAtY:aPoint y.
  2816     lineNr := self lineAtY:aPoint y.
  2817     lineNr notNil ifTrue:[
  2817     lineNr notNil ifTrue:[
  2818         len := self widthOfLine:lineNr.
  2818         len := self widthOfLine:lineNr.
  2819         len > width ifTrue:[
  2819         len > width ifTrue:[
  2820             ^ (self listAt:lineNr) collect:[:ch | ch isSeparator ifTrue:[$ ] ifFalse:[ch]]  
  2820             ^ (self listAt:lineNr) string collect:[:ch | ch isSeparator ifTrue:[$ ] ifFalse:[ch]]  
  2821         ].      
  2821         ].      
  2822     ].
  2822     ].
  2823     ^ nil
  2823     ^ nil
  2824 ! !
  2824 ! !
  2825 
  2825