diff --git a/src/MacVim/MMWindowController.m b/src/MacVim/MMWindowController.m index 3451b67e70..5d42a7f48e 100644 --- a/src/MacVim/MMWindowController.m +++ b/src/MacVim/MMWindowController.m @@ -367,7 +367,9 @@ // NOTE: This is called when the transparency changes so set the opacity // flag on the window here (should be faster if the window is opaque). BOOL isOpaque = [back alphaComponent] == 1.0f; - [[self window] setOpaque:isOpaque]; + [decoratedWindow setOpaque:isOpaque]; + if (fullscreenEnabled) + [fullscreenWindow setOpaque:isOpaque]; [vimView setDefaultColorsBackground:back foreground:fore]; }