From ece4c81c1a80721e5bfef461efc5cf3021a75a6e Mon Sep 17 00:00:00 2001 From: Shelley Vohr Date: Mon, 5 Nov 2018 21:02:46 -0800 Subject: [PATCH] fix: hiddenInset titleBar console spam (#15576) --- 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]; } } }