Browse Source

Merge pull request #9798 from electron/tonyganch/10.13-transparent-titlebar

Fix invisible titlebar on macOS 10.13
Birunthan Mohanathas 7 years ago
parent
commit
3cc0429388
1 changed files with 1 additions and 3 deletions
  1. 1 3
      atom/browser/native_window_mac.mm

+ 1 - 3
atom/browser/native_window_mac.mm

@@ -899,9 +899,7 @@ NativeWindowMac::NativeWindowMac(
   if (transparent() || !has_frame()) {
     if (base::mac::IsAtLeastOS10_10()) {
       // Don't show title bar.
-      if (title_bar_style_ == CUSTOM_BUTTONS_ON_HOVER) {
-        [window_ setTitlebarAppearsTransparent:YES];
-      }
+      [window_ setTitlebarAppearsTransparent:YES];
       [window_ setTitleVisibility:NSWindowTitleHidden];
     }
     // Remove non-transparent corners, see http://git.io/vfonD.