From b5b609fdb64a346b98bde295b188f1384bd15a06 Mon Sep 17 00:00:00 2001 From: Shelley Vohr Date: Mon, 5 Nov 2018 13:08:29 -0800 Subject: [PATCH] fix: hiddenInset titleBar console spam --- atom/browser/ui/cocoa/atom_ns_window_delegate.mm | 1 + 1 file changed, 1 insertion(+) diff --git a/atom/browser/ui/cocoa/atom_ns_window_delegate.mm b/atom/browser/ui/cocoa/atom_ns_window_delegate.mm index b96316a3ee753..6a039ad5ae919 100644 --- a/atom/browser/ui/cocoa/atom_ns_window_delegate.mm +++ b/atom/browser/ui/cocoa/atom_ns_window_delegate.mm @@ -232,6 +232,7 @@ - (void)windowWillExitFullScreen:(NSNotification*)notification { // Turn off the style for toolbar. if (shell_->title_bar_style() == atom::NativeWindowMac::HIDDEN_INSET) { shell_->SetStyleMask(false, NSWindowStyleMaskFullSizeContentView); + [window setTitlebarAppearsTransparent:YES]; } } }