hgs1906 / smartgwt

Automatically exported from code.google.com/p/smartgwt
0 stars 0 forks source link

ToolStrip creates duplicat of ToolStripSeparator #463

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
Hello.
The following code does not work:

ToolStripSeparator separator = new ToolStripSeparator();
toolStrip.addMember(separator);
toolStrip.removeMember(separator);

because the addMember on toolStrip creates a new component of
toolstripseparator, it does not add the one I passed. By this I am unable
to remove separators from toolbar. (Checked on debug and the added one has
always id+1 than the one I am passing as argument)
The other components seem to work without problems

Original issue reported on code.google.com by mihai.ile@gmail.com on 21 May 2010 at 6:39

GoogleCodeExporter commented 9 years ago
Fixed, try the latest nightly.

Original comment by smartgwt...@gmail.com on 30 Nov 2010 at 2:17