#BUGFIX by cg
authorClaus Gittinger <cg@exept.de>
Thu, 27 Oct 2016 11:30:02 +0200
changeset 16983 fcf829cdb3fc
parent 16982 4a80412feb9a
child 16984 2333af91763e
#BUGFIX by cg class: AbstractLauncherApplication changed: #bringWindowOntoScreen:
AbstractLauncherApplication.st
--- a/AbstractLauncherApplication.st	Wed Oct 26 10:24:07 2016 +0200
+++ b/AbstractLauncherApplication.st	Thu Oct 27 11:30:02 2016 +0200
@@ -2257,7 +2257,7 @@
     |allBounds bounds myDevice|
 
     myDevice := self device.
-    allBounds := myDevice monitorBoundsAt:aWindow center.
+    allBounds := myDevice monitorBounds. "At:aWindow center"
     allBounds notEmptyOrNil ifTrue:[
         bounds := allBounds 
                 detect:[:bounds | bounds containsPoint:self window center ]