WindowEvent.st
changeset 143 b237b9013f51
parent 141 caf4432fae8f
child 144 cf645a1ebbb3
--- a/WindowEvent.st	Fri May 12 20:01:16 1995 +0200
+++ b/WindowEvent.st	Fri May 12 20:10:19 1995 +0200
@@ -21,7 +21,7 @@
 COPYRIGHT (c) 1993 by Claus Gittinger
 	      All Rights Reserved
 
-$Header: /cvs/stx/stx/libview/WindowEvent.st,v 1.16 1995-05-10 02:26:23 claus Exp $
+$Header: /cvs/stx/stx/libview/WindowEvent.st,v 1.17 1995-05-12 18:09:21 claus Exp $
 '!
 
 !WindowEvent class methodsFor:'documentation'!
@@ -42,7 +42,7 @@
 
 version
 "
-$Header: /cvs/stx/stx/libview/WindowEvent.st,v 1.16 1995-05-10 02:26:23 claus Exp $
+$Header: /cvs/stx/stx/libview/WindowEvent.st,v 1.17 1995-05-12 18:09:21 claus Exp $
 "
 !
 
@@ -274,14 +274,12 @@
      if there is a focusView, and its a keyboard event, pass it
      to that view (or its controller, or its delegate). 
      In this case, a coordinate which is outside of
-     the focusView (-1 @ -1) is passed as x/y coordinates.
+     the focusView (0 @ 0) is passed as x/y coordinates.
     "
     (focusView notNil 
     and:[isKeyEvent]) ifTrue:[
 	self sendEvent:type 
-	     arguments:(Array with:(argArray at:1)
-				     with:-1
-				     with:-1)
+	     arguments:(Array with:(argArray at:1) with:0 with:0)
 	     view:focusView 
 	     withFocusOn:nil
 	     delegate:doDelegate.