Though that made me notice that minExtent is calculated on original image size without taking scaling options into account...

Regards, Gary
----- Original Message -----
From: Gary Chambers
To: Pharo-project@lists.gforge.inria.fr
Sent: Wednesday, March 21, 2012 4:07 PM
Subject: Re: [Pharo-project] Polymorph layout: images in a column

Something like the following?
 
(UITheme builder
 newColumn: {
  (UITheme builder newImage: LogoImageMorph defaultLogoForm)
   hResizing: #spaceFill;
   vResizing: #spaceFill;
   layout: #scaledAspect})
 openInWindow

Regards, Gary
----- Original Message -----
From: Schwab,Wilhelm K
To: pharo-project@lists.gforge.inria.fr
Sent: Monday, March 19, 2012 8:36 PM
Subject: [Pharo-project] Polymorph layout: images in a column

Gary,

If I create a column and place an alpha image in it, is there a way to get the image to scale, ideally to the width of the column?  As it is, I'm setting fixed extents, but somewhat works against what I would like to leave to the column?

Bill