rhysd / electron-about-window

'About This App' mini-window for Electron apps
https://www.npmjs.com/package/about-window
MIT License
409 stars 46 forks source link

Adding "resizable" props for BrowserWindow #45

Closed Fausto95 closed 4 years ago

Fausto95 commented 4 years ago

This PR gives the ability to choose whether the window is resizable or not. The default value is true as it comes with electron

rhysd commented 4 years ago

I think this is possible with the current version using win_options.


openAboutWindow({
  win_options: {
    resizable: false,
  },
  // ...
});
Fausto95 commented 4 years ago

Oh yeah, I completely missed that part, thanks. I'm going to close this then