mawie81 / electron-window-state

A library to store and restore window sizes and positions for your Electron app
MIT License
659 stars 67 forks source link

Only reset window position if it is out of bounds across multiple monitors and allow out of bounds option #69

Open jmatth11 opened 3 years ago

jmatth11 commented 3 years ago

1.) Add logic to only reset the window if the window is out of bounds of a view in a multi-monitor supported way.

Previously the window position would be reset if the window was in-between two monitors even though it was still visible. This change allows the window to not be reset even if it is between monitors as long as the window is in view.

2.) Allow an outOfBounds option that is false by default. When set to true, the window position can be off screen but must maintain at least one corner in view.