From: Alan Third Date: Sat, 10 Jul 2021 14:47:00 +0000 (+0100) Subject: * src/nsterm.m (ns_set_frame_alpha): Enable alpha on GNUstep. X-Git-Tag: emacs-28.0.90~1685 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=0b54632013c07f89625c6abe2b26d787618025aa;p=emacs.git * src/nsterm.m (ns_set_frame_alpha): Enable alpha on GNUstep. --- diff --git a/src/nsterm.m b/src/nsterm.m index b9e2c9b6916..c3122291a9a 100644 --- a/src/nsterm.m +++ b/src/nsterm.m @@ -2433,12 +2433,10 @@ ns_set_frame_alpha (struct frame *f) else if (0.0 <= alpha && alpha < alpha_min && alpha_min <= 1.0) alpha = alpha_min; -#ifdef NS_IMPL_COCOA { EmacsView *view = FRAME_NS_VIEW (f); - [[view window] setAlphaValue: alpha]; + [[view window] setAlphaValue: alpha]; } -#endif }