From 0b54632013c07f89625c6abe2b26d787618025aa Mon Sep 17 00:00:00 2001 From: Alan Third Date: Sat, 10 Jul 2021 15:47:00 +0100 Subject: [PATCH] * src/nsterm.m (ns_set_frame_alpha): Enable alpha on GNUstep. --- src/nsterm.m | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) 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 } -- 2.39.2