#BUGFIX
authorClaus Gittinger <cg@exept.de>
Sat, 10 Oct 2015 16:54:30 +0200
changeset 5481 6eeeb8d2dabf
parent 5480 f883732537d6
child 5482 816a9de03d66
child 5483 ae6277a36df5
#BUGFIX class: SelectionInListView added: #flyByHelpTextAt:
SelectionInListView.st
--- a/SelectionInListView.st	Sat Oct 10 16:54:12 2015 +0200
+++ b/SelectionInListView.st	Sat Oct 10 16:54:30 2015 +0200
@@ -1,3 +1,5 @@
+"{ Encoding: utf8 }"
+
 "
  COPYRIGHT (c) 1989 by Claus Gittinger
 	      All Rights Reserved
@@ -2792,6 +2794,19 @@
     ^ false
 ! !
 
+!SelectionInListView methodsFor:'help'!
+
+flyByHelpTextAt:aPoint
+    |lineNr len|
+
+    lineNr := self lineAtY:aPoint y.
+    len := self widthOfLine:lineNr.
+    len > width ifTrue:[
+        ^ (self listAt:lineNr)  
+    ].      
+    ^ nil
+! !
+
 !SelectionInListView methodsFor:'initialization'!
 
 fetchDeviceResources