DragAndDropManager.st
changeset 4125 7d349e2afa0e
parent 4124 e685cbc75d30
child 4127 143f01d8f423
--- a/DragAndDropManager.st	Wed Jun 13 21:34:45 2018 +0200
+++ b/DragAndDropManager.st	Thu Jun 14 00:19:41 2018 +0200
@@ -1371,10 +1371,14 @@
 "/    ].
     giveFocusToTargetWidget ifTrue:[
         (targetWidget notNil and:[targetWidget shown]) ifTrue:[
-            targetWidget topView raise; activate.
-            targetWidget takeFocus.    
+            targetWidget isRootView ifFalse:[
+                targetWidget topView raise; activate.
+                targetWidget takeFocus.    
+            ].
         ].
     ].
+
+    "Modified: / 14-06-2018 / 00:10:58 / Claus Gittinger"
 !
 
 escapePressed