exit HTML fullscreen when window leaves fullscreen (#13090)
This commit is contained in:
parent
28fd571d0c
commit
2eb5b751f3
3 changed files with 32 additions and 0 deletions
|
@ -270,6 +270,14 @@ void BrowserWindow::OnWindowResize() {
|
|||
TopLevelWindow::OnWindowResize();
|
||||
}
|
||||
|
||||
void BrowserWindow::OnWindowLeaveFullScreen() {
|
||||
TopLevelWindow::OnWindowLeaveFullScreen();
|
||||
#if defined(OS_MACOSX)
|
||||
if (web_contents()->IsFullscreenForCurrentTab())
|
||||
web_contents()->ExitFullscreen(true);
|
||||
#endif
|
||||
}
|
||||
|
||||
void BrowserWindow::Focus() {
|
||||
if (api_web_contents_->IsOffScreen())
|
||||
FocusOnWebView();
|
||||
|
|
|
@ -66,6 +66,7 @@ class BrowserWindow : public TopLevelWindow,
|
|||
void OnWindowBlur() override;
|
||||
void OnWindowFocus() override;
|
||||
void OnWindowResize() override;
|
||||
void OnWindowLeaveFullScreen() override;
|
||||
void Focus() override;
|
||||
void Blur() override;
|
||||
void SetBackgroundColor(const std::string& color_name) override;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue