also handle map/unmap events in repairDamage.
authorClaus Gittinger <cg@exept.de>
Sat, 06 Jun 1998 23:32:24 +0200
changeset 2138 1800e9b5afe3
parent 2137 cec979de294c
child 2139 717e95ca7308
also handle map/unmap events in repairDamage. (otherwise, newly created views may not redraw themself)
SimpleView.st
--- a/SimpleView.st	Sat Jun 06 21:19:07 1998 +0200
+++ b/SimpleView.st	Sat Jun 06 23:32:24 1998 +0200
@@ -6818,12 +6818,13 @@
 
     shown ifTrue:[
         (wg := self windowGroup) notNil ifTrue:[
-            wg processRealExposeEventsFor:self.
-            "/ wg processExposeEvents.
+            "/ wg processRealExposeEventsFor:self. "/ this ignores map/unmap
+            wg processExposeEvents.                "/ this handles map/unmap
         ]
     ]
 
-    "Created: 19.4.1997 / 12:01:13 / cg"
+    "Created: / 19.4.1997 / 12:01:13 / cg"
+    "Modified: / 6.6.1998 / 20:49:23 / cg"
 !
 
 showActive
@@ -7763,6 +7764,6 @@
 !SimpleView class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libview/SimpleView.st,v 1.253 1998-05-25 12:01:00 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libview/SimpleView.st,v 1.254 1998-06-06 21:32:24 cg Exp $'
 ! !
 SimpleView initialize!