setForegroundWindow disabled.
authorpenk
Fri, 11 Mar 2005 12:02:33 +0100
changeset 4362 00fdb904e508
parent 4361 48d92da2bcdf
child 4363 d7a017ae1487
setForegroundWindow disabled.
TopView.st
--- a/TopView.st	Thu Mar 10 17:59:06 2005 +0100
+++ b/TopView.st	Fri Mar 11 12:02:33 2005 +0100
@@ -953,6 +953,7 @@
 
     drawableId isNil ifTrue:[self create].
 
+false ifTrue:[
     "WIN32 does not raise above other windows"
     device platformName = 'WIN32' ifTrue:[
         "do not do this for popUps, otherwise nested popUpMenus
@@ -961,6 +962,7 @@
             device setForegroundWindow:drawableId.
         ]
     ].
+].
     super raise
 
     "
@@ -1205,7 +1207,7 @@
 !TopView class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libview/TopView.st,v 1.105 2005-03-10 16:59:06 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libview/TopView.st,v 1.106 2005-03-11 11:02:33 penk Exp $'
 ! !
 
 TopView initialize!