AbstractFileApplicationNoteBookComponent.st
changeset 17201 dcbb7ce3c3da
parent 16198 7aca47a2689a
child 17220 324f16278da6
child 17811 215663d4f8a3
--- a/AbstractFileApplicationNoteBookComponent.st	Tue Dec 27 14:15:43 2016 +0100
+++ b/AbstractFileApplicationNoteBookComponent.st	Thu Dec 29 11:55:59 2016 +0100
@@ -168,15 +168,17 @@
 doStartDrag:aDropSource in:aView
     "common code, used in subclasses"
 
-    |hdl|
-
-    hdl := DragAndDropManager new.
-
-    hdl disabledCursor:AbstractFileBrowser disabledCursorImage.
-    hdl enabledCursor:AbstractFileBrowser enabledCursorImage.
-    hdl alienCursor:nil.
-
-    hdl startDragFrom:aView dropSource:aDropSource offset:#topLeft
+    AbstractFileBrowser doStartDrag:aDropSource in:aView
+"/ same code    
+"/    |hdl|
+"/
+"/    hdl := DragAndDropManager new.
+"/
+"/    hdl disabledCursor:AbstractFileBrowser disabledCursorIcon.
+"/    hdl enabledCursor:AbstractFileBrowser enabledCursorIcon.
+"/    hdl alienCursor:nil.
+"/
+"/    hdl startDragFrom:aView dropSource:aDropSource offset:#topLeft
 ! !
 
 !AbstractFileApplicationNoteBookComponent methodsFor:'queries'!