#BUGFIX by cg
authorClaus Gittinger <cg@exept.de>
Mon, 27 Feb 2017 02:01:56 +0100
changeset 21582 77c234f2d145
parent 21581 20d4f3a38e2c
child 21583 f8038dc314f3
#BUGFIX by cg class: OSXOperatingSystem comment/format in: #simulateEvent changed: #getFrameBufferImage:in:
OSXOperatingSystem.st
--- a/OSXOperatingSystem.st	Sun Feb 26 12:11:12 2017 +0100
+++ b/OSXOperatingSystem.st	Mon Feb 27 02:01:56 2017 +0100
@@ -422,7 +422,7 @@
     } else {
         CGRect rect;
         rect.origin.x = (CGFloat)__intVal(rx);
-        rect.origin.y = (CGFloat)__intVal(rx);
+        rect.origin.y = (CGFloat)__intVal(ry);
         rect.size.width = (CGFloat)__intVal(rwidth);
         rect.size.height = (CGFloat)__intVal(rheight);
         image_ref  = CGDisplayCreateImageForRect(displayID, rect);
@@ -513,7 +513,7 @@
     "
 
     "Created: / 25-02-2017 / 09:49:07 / cg"
-    "Modified: / 25-02-2017 / 11:42:48 / cg"
+    "Modified: / 27-02-2017 / 02:01:24 / cg"
 ! !
 
 !OSXOperatingSystem class methodsFor:'documentation'!