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.
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.