Boxes without shadows

Hello,

I am trying to get rid of the shadows around boxes (e.g. TLegend). By saying

gROOT->SetStyle("Plain");

any automatically created boxes (histogram titles, statistic box etc) are drawn without shadow. But as soon as I create a box, e.g

TLegend leg(0.575503,0.708029,0.901007,0.899635,NULL,"NDC");
			.
			.
			.
leg.Draw();

a shadow is drawn around the box. What am I doing wrong?

With best regards

Felix

The border of TPave, TLegend cannot be set via TStyle.
Use leg.SetBorderSize(1)

Rene