selectRow on buttonPress:x:y: withWaitCursor
authorpenk
Fri, 27 Sep 2002 14:09:42 +0200
changeset 2226 4478e2919bd2
parent 2225 d785c9d86aa3
child 2227 c5e6912cc6b2
selectRow on buttonPress:x:y: withWaitCursor
DSVColumnView.st
--- a/DSVColumnView.st	Fri Sep 27 13:53:27 2002 +0200
+++ b/DSVColumnView.st	Fri Sep 27 14:09:42 2002 +0200
@@ -2033,7 +2033,9 @@
                 clickPosition   := x @ y.
                 dragAccessPoint := (colNr @ rowNr).
             ] ifFalse:[
-                self selectRowAt:rowNr colAt:colNr atPoint:(x @ y)
+                self withWaitCursorDo:[
+                    self selectRowAt:rowNr colAt:colNr atPoint:(x @ y)
+                ]
             ].
             ^ self
         ]
@@ -3618,5 +3620,5 @@
 !DSVColumnView class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libwidg2/DSVColumnView.st,v 1.146 2002-09-20 15:02:21 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libwidg2/DSVColumnView.st,v 1.147 2002-09-27 12:09:42 penk Exp $'
 ! !