SimpleView.st
changeset 1981 0c3b8ef42df8
parent 1960 aa9ef6e21f15
child 1984 e34624152bf3
--- a/SimpleView.st	Thu Jan 15 16:38:11 1998 +0100
+++ b/SimpleView.st	Thu Jan 15 22:22:52 1998 +0100
@@ -3070,7 +3070,11 @@
     realized ifFalse:[
         superView isNil                 "/ I am a topView
         ifTrue:[
-            self remap
+            drawableId isNil ifTrue:[
+                self realize.
+            ] ifFalse:[
+                self remap.
+            ].
         ] ifFalse:[
             superView realized          "/ superview already shown
             ifTrue:[
@@ -3102,8 +3106,9 @@
      top open
     "
 
-    "Created: 22.9.1995 / 15:50:33 / claus"
-    "Modified: 17.6.1997 / 11:23:00 / cg"
+    "Created: / 22.9.1995 / 15:50:33 / claus"
+    "Modified: / 17.6.1997 / 11:23:00 / cg"
+    "Modified: / 14.1.1998 / 17:33:15 / stefan"
 !
 
 beVisibleNow
@@ -7696,6 +7701,6 @@
 !SimpleView class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libview/SimpleView.st,v 1.238 1997-11-21 12:57:34 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libview/SimpleView.st,v 1.239 1998-01-15 21:22:52 stefan Exp $'
 ! !
 SimpleView initialize!