Kevin Sawicki 8 years ago
parent
commit
483e007b69
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

@@ -1231,9 +1231,7 @@ void NativeWindowMac::SetVibrancy(const std::string& type) {
         initWithFrame: [[window_ contentView] bounds]] autorelease];
     [window_ setVibrantView:(NSView*)effect_view];
 
-    [effect_view setAutoresizingMask:
-      NSViewWidthSizable | NSViewHeightSizable];
-
+    [effect_view setAutoresizingMask:NSViewWidthSizable | NSViewHeightSizable];
     [effect_view setBlendingMode:NSVisualEffectBlendingModeBehindWindow];
     [effect_view setState:NSVisualEffectStateActive];
     [[window_ contentView] addSubview:effect_view