#BUGFIX by cg
authorClaus Gittinger <cg@exept.de>
Tue, 14 May 2019 12:03:11 +0200
changeset 8677 8e63719d8dfe
parent 8676 47ea6f5a3076
child 8678 2d160e46bc50
#BUGFIX by cg class: WindowGroup changed: #migrateTo: (send #expand instead of #realize)
WindowGroup.st
--- a/WindowGroup.st	Tue May 07 17:42:21 2019 +0200
+++ b/WindowGroup.st	Tue May 14 12:03:11 2019 +0200
@@ -1,5 +1,3 @@
-"{ Encoding: utf8 }"
-
 "
  COPYRIGHT (c) 1993 by Claus Gittinger
 	      All Rights Reserved
@@ -2683,7 +2681,8 @@
     "/ realize them ...
     (topViews ? previouslyRealized) do:[:eachTopView |
         (previouslyRealized includes:eachTopView) ifTrue:[
-            eachTopView realize
+            eachTopView expand.
+            "/ eachTopView realize
         ].
     ].
 
@@ -2756,6 +2755,8 @@
     "
      Transcript topView windowGroup migrateTo:Display
     "
+
+    "Modified: / 11-05-2019 / 10:57:10 / Claus Gittinger"
 ! !
 
 !WindowGroup methodsFor:'special-accessing'!