When setting a menu with mainWindow.setMenu(), this package no longer finds the menu items.
So my code has to use Menu.setApplicationMenu() for this package to work. The problem is that this sets the same menu to all windows, including the dev tools.
This is probably a big source for this package not working for other users since there is no feedback at all why the menu is empty.
Problem Description
Code uses
Menu.getApplicationMenu()
but should usemainWindow.getMenu()
Expected Behavior
When setting a menu with
mainWindow.setMenu()
, this package no longer finds the menu items. So my code has to useMenu.setApplicationMenu()
for this package to work. The problem is that this sets the same menu to all windows, including the dev tools.This is probably a big source for this package not working for other users since there is no feedback at all why the menu is empty.