🔧 Fix value shift

This commit is contained in:
Felix Rieseberg 2017-12-11 13:30:35 -08:00
parent 5a658fa5f6
commit ffc54967e9

View file

@ -48,12 +48,9 @@ Menu.prototype.popup = function (window, x, y, positioningItem) {
let opts
// menu.popup(x, y, positioningItem)
if (!window) {
// shift over values
if (typeof window !== 'object' || window.constructor !== BrowserWindow) {
if (window && typeof window !== 'object' || window.constructor !== BrowserWindow) {
[newPosition, newY, newX, newWindow] = [y, x, window, null]
}
}
// menu.popup({})
if (typeof window === 'object' && window.constructor !== BrowserWindow) {