If the window's transparent it also needs to be textured.

This commit is contained in:
joshaber 2015-05-12 21:05:48 -04:00
parent 1c97fc79ad
commit 033f9bcced

View file

@ -315,7 +315,7 @@ NativeWindowMac::NativeWindowMac(content::WebContents* web_contents,
NSUInteger styleMask = NSTitledWindowMask | NSClosableWindowMask |
NSMiniaturizableWindowMask | NSResizableWindowMask;
if (!useStandardWindow) {
if (!useStandardWindow || transparent_) {
styleMask |= NSTexturedBackgroundWindowMask;
}