Skip to content
Advertisement

MacOS Eclipse RCP MenuItem Selection event invalidation

MacOS 10.15.5 Eclipse RCP 2020-09

Problem : MenuItem Selection event invalidation

Code :

JavaScript

result: MacOS cannot execute , Event not triggered

Window OS Is OK

Advertisement

Answer

You can’t have SWT.PUSH style menu items directly on the menu bar (at least not on macOS). You need to create SWT.CASCADE menu items with the push items as children.

JavaScript

(Adapted from this SWT Snippet and tested on macOS 12.0.1)

Note: If you just want push buttons across the top of the shell use a ToolBar.

User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement