diff -r 47bab7b3cf8a -r 00cfb3845256 PanelView.st --- a/PanelView.st Wed Feb 08 00:56:16 2017 +0100 +++ b/PanelView.st Wed Feb 08 00:56:17 2017 +0100 @@ -451,14 +451,18 @@ !PanelView methodsFor:'initialization'! initialize + "must be called if redefined" + super initialize. hLayout := vLayout := #center. "/ notice, this is ignored in this class - "/ used by subclasses only + "/ used by subclasses only verticalSpace := ViewSpacing. horizontalSpace := ViewSpacing. mustRearrange := elementsChangeSize := false. ignoreInvisibleComponents := true. + + "Modified: / 08-02-2017 / 00:35:19 / cg" ! mapped