setChildPos if extent is set in create->resize->prefExtent
authorca
Tue, 06 May 1997 09:30:32 +0200
changeset 1216 3506a6474c42
parent 1215 0d9e67bdfbe4
child 1217 f06721aceb8f
setChildPos if extent is set in create->resize->prefExtent
PanelView.st
--- a/PanelView.st	Mon May 05 17:57:22 1997 +0200
+++ b/PanelView.st	Tue May 06 09:30:32 1997 +0200
@@ -273,6 +273,13 @@
     super realize
 !
 
+resize
+    super resize.
+    mustRearrange ifTrue:[
+        self setChildPositions
+    ].
+!
+
 setChildPositionsIfChanged
     "set all of my child positions - this is usually delayed,
      until the panel is actually shown (since we dont know, if more
@@ -381,5 +388,5 @@
 !PanelView class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libwidg/PanelView.st,v 1.23 1997-03-28 14:52:00 ca Exp $'
+    ^ '$Header: /cvs/stx/stx/libwidg/PanelView.st,v 1.24 1997-05-06 07:30:32 ca Exp $'
 ! !