Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    BUG in 2.2 ToolStrip found

    Hello.
    The following code does not work:

    Code:
    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

    #2
    Please file an issue for this in tracker.

    Comment

    Working...
    X