SimpleView.st
changeset 5258 a84265cb2456
parent 5257 12cff8cf004d
child 5262 d7651814a2db
--- a/SimpleView.st	Thu May 14 00:24:57 2009 +0200
+++ b/SimpleView.st	Thu May 14 00:25:26 2009 +0200
@@ -9261,7 +9261,7 @@
             |thisFrame is|
 
             thisFrame := aComponent bounds.
-            (thisFrame isNil or:[thisFrame intersects:aRectangle]) ifTrue:[
+            (thisFrame notNil and:[thisFrame intersects:aRectangle]) ifTrue:[
                 aComponent displayOn:self
             ]
         ]
@@ -10372,7 +10372,7 @@
 !SimpleView class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libview/SimpleView.st,v 1.622 2009-05-13 22:24:57 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libview/SimpleView.st,v 1.623 2009-05-13 22:25:26 cg Exp $'
 ! !
 
 SimpleView initialize!