HierarchicalDropTargetController.st
changeset 4835 10986fc8bd78
parent 3868 8e73b46c547c
child 4879 9a3a73693cfd
--- a/HierarchicalDropTargetController.st	Tue Sep 08 17:58:38 2015 +0200
+++ b/HierarchicalDropTargetController.st	Wed Sep 09 15:51:52 2015 +0200
@@ -11,6 +11,8 @@
 "
 "{ Package: 'stx:libwidg2' }"
 
+"{ NameSpace: Smalltalk }"
+
 Object subclass:#HierarchicalDropTargetController
 	instanceVariableNames:'expandBlock highlightMode receiver dropOverLine dropSelector
 		canDropSelector canExpandSelector'
@@ -232,7 +234,7 @@
     view fillRectangle:(Rectangle left:(x0 - 2) top:y0 width:(item widthOn:view) + 4 height:(y1 - y0)).
 
     view paint:fgColor on:bgColor.
-    item displayOn:view x:x0 y:y0 h:(y1 - y0).
+    item displayOn:view x:x0 y:y0 h:(y1 - y0) isHighlightedAsSelected:false.
 
     item isExpanded ifTrue:[ ^ self ].
     item canExpand ifFalse:[ ^ self ].
@@ -270,9 +272,10 @@
 !HierarchicalDropTargetController class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libwidg2/HierarchicalDropTargetController.st,v 1.5 2009-12-22 11:04:38 cg Exp $'
+    ^ '$Header$'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libwidg2/HierarchicalDropTargetController.st,v 1.5 2009-12-22 11:04:38 cg Exp $'
+    ^ '$Header$'
 ! !
+