-
Type:
Bug
-
Resolution: Duplicate
-
Priority:
P4
-
Affects Version/s: 7-pool
-
Component/s: javafx
-
Environment:
Mac
The following actions won't produce the desired result:
Menu m = app.createMenu("Menu");
menubar.add(m);
// now populate 'm' with menu items
Instead the menuitems must be added before adding the menu to the menubar. This looks like a bug.
Menu m = app.createMenu("Menu");
menubar.add(m);
// now populate 'm' with menu items
Instead the menuitems must be added before adding the menu to the menubar. This looks like a bug.