use kCGMinimumWindowLevelKey to get the minimum level

This commit is contained in:
leethomas 2017-01-26 19:12:10 -08:00
Родитель b67d515a76
Коммит edbb786fb4
2 изменённых файлов: 5 добавлений и 4 удалений

Просмотреть файл

@ -1060,6 +1060,7 @@ void NativeWindowMac::SetAlwaysOnTop(bool top, const std::string& level, int rel
std::string* error) {
int windowLevel = NSNormalWindowLevel;
CGWindowLevel maxWindowLevel = CGWindowLevelForKey(kCGMaximumWindowLevelKey);
CGWindowLevel minWindowLevel = CGWindowLevelForKey(kCGMinimumWindowLevelKey);
if (top) {
if (level == "floating") {
@ -1083,12 +1084,12 @@ void NativeWindowMac::SetAlwaysOnTop(bool top, const std::string& level, int rel
}
NSInteger newLevel = windowLevel + relativeLevel;
if (newLevel >= 0 && newLevel <= maxWindowLevel) {
if (newLevel >= minWindowLevel && newLevel <= maxWindowLevel) {
[window_ setLevel:newLevel];
} else {
*error = std::string([[NSString stringWithFormat:
@"relativeLevel must be between 0 and %d", maxWindowLevel] UTF8String]);
@"relativeLevel must be between %d and %d", minWindowLevel,
maxWindowLevel] UTF8String]);
}
}

Просмотреть файл

@ -518,7 +518,7 @@ describe('BrowserWindow module', function () {
if (process.platform !== 'darwin') return
assert.throws(function () {
w.setAlwaysOnTop(true, '', -1)
w.setAlwaysOnTop(true, '', -2147483644)
})
assert.throws(function () {