From 6053c3b47aeee784c08a29ad5bee7f830f2ca494 Mon Sep 17 00:00:00 2001 From: ManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com> Date: Mon, 9 Mar 2026 11:15:41 +0100 Subject: [PATCH] Fix "Please remove the slight transparency from menu windows on macOS" (#1373) Backported from commit e931c21 to --- src/Fl_cocoa.mm | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/Fl_cocoa.mm b/src/Fl_cocoa.mm index ec32db270..725d2c201 100644 --- a/src/Fl_cocoa.mm +++ b/src/Fl_cocoa.mm @@ -3249,9 +3249,6 @@ void Fl_Cocoa_Window_Driver::makeWindow() this->x(round(crect.origin.x/s)); this->y( round((main_screen_height - crect.origin.y)/s) - w->h() ); } - if(w->menu_window()) { // make menu windows slightly transparent - [cw setAlphaValue:0.97]; - } // Install DnD handlers [myview registerForDraggedTypes:[NSArray arrayWithObjects:UTF8_pasteboard_type, fl_filenames_pboard_type, nil]];