Coolguy
Coolguy

Reputation: 2285

Unhide the menu bar for app after compiled with electron-packager

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

Answers (1)

Luiz Lago
Luiz Lago

Reputation: 2659

You tried some like this?

mainWindow.setMenuBarVisibility(true);

Upvotes: 1

Related Questions