🍎 Remove deprecated dock
window level
According to the Apple docs, the `NSDockWindowLevel` constant is deprecated: https://developer.apple.com/reference/appkit/nsdockwindowlevel?language=objc
This commit is contained in:
parent
3e128abb73
commit
3dde669ee8
3 changed files with 3 additions and 2 deletions
|
@ -494,7 +494,7 @@ describe('BrowserWindow module', function () {
|
|||
describe('BrowserWindow.setAlwaysOnTop(flag, level)', function () {
|
||||
it('sets the window as always on top', function () {
|
||||
assert.equal(w.isAlwaysOnTop(), false)
|
||||
w.setAlwaysOnTop(true, 'dock')
|
||||
w.setAlwaysOnTop(true, 'screen-saver')
|
||||
assert.equal(w.isAlwaysOnTop(), true)
|
||||
w.setAlwaysOnTop(false)
|
||||
assert.equal(w.isAlwaysOnTop(), false)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue