Reputation: 2285
I notice that electron-packager has hide the top menu bar after we compiled an exe file if compared to electron-prebuilt. Is there ways to unhide it? I need to use it for user to choose some settings.
Same topic reference: github
Upvotes: 1
Views: 525
Reputation: 2659
You tried some like this?
mainWindow.setMenuBarVisibility(true);
Upvotes: 1