Just wondering if Frame's setShadowType() function is working properly. I tried passing it all options from the enum (IN, OUT, ETCHED_IN, ETCHED_OUT) but they all look exactly the same... except NONE. That looks like what I expected: no frame.

class FrameOut : Frame
{
	private:
	string titleLabel = "Coordinates";
	FrameChildGrid frameChildGrid;
	
	public:
	this()
	{
		super(titleLabel);
		setShadowType(ShadowType.NONE);
		frameChildGrid = new FrameChildGrid();
		add(frameChildGrid);
		
	} // this()
	
} // class FrameOut

What am I missing?