fix: make BrowserWindow#isFocused() return false when blur() is called on macOS (#33734)
The isFocused() method on macOS works by checking if the selected BrowserWindow is a key window. Unfortunately, this didn't work well with blur() because it wasn't calling any macOS APIs that would change the key status of the window. Hence, this changes the implementation of blur() to call orderOut first, which removes the key status of the window. Then when the orderBack function is called, it moves the window to the back of its level in the screen list, without changing the key window. Fixes: https://github.com/electron/electron/issues/33732 Signed-off-by: Darshan Sen <raisinten@gmail.com>
This commit is contained in:
parent
7dee5179cb
commit
f887000d50
2 changed files with 127 additions and 2 deletions
|
@ -507,6 +507,7 @@ void NativeWindowMac::Focus(bool focus) {
|
|||
[[NSApplication sharedApplication] activateIgnoringOtherApps:NO];
|
||||
[window_ makeKeyAndOrderFront:nil];
|
||||
} else {
|
||||
[window_ orderOut:nil];
|
||||
[window_ orderBack:nil];
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue