SimpleView.st
changeset 8001 5acf4831dba3
parent 7988 d2d9f0502006
child 8028 e7f44af6889f
--- a/SimpleView.st	Tue Apr 11 01:52:54 2017 +0200
+++ b/SimpleView.st	Tue Apr 11 03:05:16 2017 +0200
@@ -10029,11 +10029,11 @@
      a windowGroup different from its superview's and is handled as a separate process."
 
     windowGroup isForModalSubview:true.
-"/    self realize.
 
     self realizeKeepingGroup:true at:nil iconified:false
 
-    "Modified: 20.8.1997 / 14:56:20 / cg"
+    "Modified: / 20-08-1997 / 14:56:20 / cg"
+    "Modified (comment): / 10-04-2017 / 21:27:26 / cg"
 !
 
 realizeKeepingGroup:keepGroupAsIs at:position iconified:iconified
@@ -10227,19 +10227,21 @@
     "rerealize at old position in (a possibly different) windowGroup."
 
     self drawableId isNil ifTrue:[self create].
+    
     self drawableId notNil ifTrue:[
-	aWindowGroup ~~ windowGroup ifTrue:[
-	    windowGroup notNil ifTrue:[
-		windowGroup removeView:self
-	    ].
-	    windowGroup := aWindowGroup.
-	    aWindowGroup addTopView:self.
-	].
-	self remap.
+        aWindowGroup ~~ windowGroup ifTrue:[
+            windowGroup notNil ifTrue:[
+                windowGroup removeView:self
+            ].
+            windowGroup := aWindowGroup.
+            aWindowGroup addTopView:self.
+        ].
+        self remap.
     ]
 
-    "Modified: 3.5.1996 / 23:59:30 / stefan"
-    "Modified: 28.7.1997 / 18:53:01 / cg"
+    "Modified: / 03-05-1996 / 23:59:30 / stefan"
+    "Modified: / 28-07-1997 / 18:53:01 / cg"
+    "Modified (format): / 10-04-2017 / 21:27:08 / cg"
 !
 
 rerealizeWithAllSubViews