Fix preferred and dynamic preferred sizes
authorStefan Vogel <sv@exept.de>
Mon, 23 Mar 2009 20:48:40 +0100
changeset 2618 fb52a0f3e1e8
parent 2617 91adf98676da
child 2619 4b16e812918f
Fix preferred and dynamic preferred sizes Allow preferred and dynamic preferred sizes for extent layout
LayoutFrame.st
--- a/LayoutFrame.st	Mon Mar 23 19:54:46 2009 +0100
+++ b/LayoutFrame.st	Mon Mar 23 20:48:40 2009 +0100
@@ -9,7 +9,6 @@
  other person.  No title to or ownership of the software is
  hereby transferred.
 "
-
 "{ Package: 'stx:libview2' }"
 
 LayoutOrigin subclass:#LayoutFrame
@@ -390,10 +389,10 @@
 
     ^ super literalArrayEncoding
       , (Array
-            with:rightOffset
+            with:rightOffset value          "take care of blocks (dynamic preferred extent)"
             with:rightFraction
-            with:bottomOffset
-            with:bottomFraction)
+            with:bottomOffset value
+            with:bottomFraction)            "take care of blocks (dynamic preferred extent)"
 
     "Modified: 1.9.1995 / 02:43:35 / claus"
     "Modified: 22.4.1996 / 13:00:17 / cg"
@@ -502,5 +501,5 @@
 !LayoutFrame class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libview2/LayoutFrame.st,v 1.32 2006-09-15 14:30:57 fm Exp $'
+    ^ '$Header: /cvs/stx/stx/libview2/LayoutFrame.st,v 1.33 2009-03-23 19:48:40 stefan Exp $'
 ! !