EventMonitor.st
changeset 8089 9ddb90f56334
parent 7354 26df0346aac9
child 8583 1ba96eea53a8
--- a/EventMonitor.st	Wed Apr 30 14:08:34 2008 +0200
+++ b/EventMonitor.st	Thu May 01 23:05:31 2008 +0200
@@ -9,7 +9,6 @@
  other person.  No title to or ownership of the software is
  hereby transferred.
 "
-
 "{ Package: 'stx:libtool' }"
 
 ApplicationModel subclass:#EventMonitor
@@ -88,8 +87,7 @@
        (WindowSpec
           label: 'EventMonitor'
           name: 'EventMonitor'
-          min: (Point 10 10)
-          max: (Point 1024 768)
+          min: (Point 100 100)
           bounds: (Rectangle 0 0 300 300)
           menu: mainMenu
         )
@@ -650,6 +648,10 @@
 !
 
 sizeChanged:how
+    outputStream nextPutAll:'sizeChanged how:'.
+    how printOn:outputStream.
+    outputStream cr.
+
     super sizeChanged:how.
     self invalidate
 
@@ -702,5 +704,5 @@
 !EventMonitor class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libtool/EventMonitor.st,v 1.28 2006-10-04 11:18:43 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/EventMonitor.st,v 1.29 2008-05-01 21:05:31 stefan Exp $'
 ! !