Since we use FastTable in Nautilus, if you drag a Nautilus window, some icons become
transparent. (protocol icons for "private" and "initialization").
This is because fast table scales all icons to size 16@16 and this will convert
8bit forms to 16 bit forms and this may lose transparency information.
you can simulate this with
f:= Form extent: 100@ 100 depth:32.
fill := (GradientFillStyle colors: (Color wheel: 10))
origin: 50@50 ;
direction: 0@50;radial:true.
f getCanvas fillRectangle: (10@10 extent: 80@80) fillStyle: fill.
f getCanvas frameRectangle: f boundingBox width:2 color:Color blue.
(f asFormOfDepth:16) asMorph openInHand.