From a0d03f1d5df534ef8541c9e2f53bae5a516704ae Mon Sep 17 00:00:00 2001 From: ianhodge Date: Mon, 18 May 2026 23:30:17 +0000 Subject: [PATCH] Fix scrollable dropdown menu background Use the menu surface fill for scrollable menu content so dropdowns render with an opaque background instead of allowing controls underneath to show through. Co-Authored-By: Oz --- app/src/menu.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/menu.rs b/app/src/menu.rs index d0a2b44284..1b1b32d561 100644 --- a/app/src/menu.rs +++ b/app/src/menu.rs @@ -2114,7 +2114,7 @@ impl SubMenu { ScrollbarWidth::Auto, appearance.theme().nonactive_ui_detail().into(), appearance.theme().active_ui_detail().into(), - warpui::elements::Fill::None, + menu_background_color.into(), ) .with_overlayed_scrollbar() .finish(),