(x_set_frame_alpha): Fix logic.
[bpt/emacs.git] / src / w32term.c
index 65028f7..8f9aed2 100644 (file)
@@ -453,7 +453,7 @@ x_set_frame_alpha (f)
   ex_style = GetWindowLong (window, GWL_EXSTYLE);
 
   if (opac == OPAQUE_FRAME)
-    ex_style ^= WS_EX_LAYERED;
+    ex_style &= ~WS_EX_LAYERED;
   else
     ex_style |= WS_EX_LAYERED;