UIObjectView.st
changeset 91 86d0c649f95e
parent 89 35c5711729c2
child 95 c20189d75ec3
--- a/UIObjectView.st	Fri Mar 28 19:55:08 1997 +0100
+++ b/UIObjectView.st	Fri Mar 28 19:56:15 1997 +0100
@@ -33,6 +33,12 @@
     type   := self layoutType:aView.
     layout := aView geometryLayout.
 
+    layout isNil ifTrue:[
+        type == #Extent ifTrue:[
+            layout := aView bounds asLayout
+        ]
+    ].
+
     (type isNil or:[layout isNil]) ifTrue:[
         ^ nil
     ].
@@ -88,6 +94,8 @@
         newLyt bottomOffset:(bO + dlta y).
     ].
   ^ newLyt.
+
+    "Modified: 28.3.1997 / 19:52:48 / cg"
 ! !
 
 !UIObjectView class methodsFor:'defaults'!