[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Newsgroup Home]
[news.eclipse.platform.swt] Is this legal to reuse a menu item?

Hi,

I have a Menu, which is made visible when clicking on a number of button
elements (menu is shown under the button). Here is the code to set selection
event on one of those buttons:

menu = createMenuOnce()
button1.addSelectionListener(new SelectionAdapter() {
  public void widgetSelected(SelectionEvent e) {
    Point loc = display.map(button1, null, 0, 0);
    Point size = button1.getSize();
    menu.setLocation(loc.x, loc.y + size.y);
    menu.setVisible(true);
  }
});

There is no problem with Windows or Linux, but with OS X 10.5 we have some
crash reports when clicking on the button.

Thanks,
Mohsen.