From ef511976becef0dfb0cacec7afccb98de25feb2f Mon Sep 17 00:00:00 2001 From: Rob McBroom Date: Wed, 14 May 2025 12:19:09 -0400 Subject: [PATCH] Add a separator before Quit in the application menu (#30697) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit macOS applications should have a separator between “Show All” and “Quit” in the application menu. --- crates/zed/src/zed/app_menus.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/crates/zed/src/zed/app_menus.rs b/crates/zed/src/zed/app_menus.rs index 2bdcaa718d..17a7e43927 100644 --- a/crates/zed/src/zed/app_menus.rs +++ b/crates/zed/src/zed/app_menus.rs @@ -44,6 +44,7 @@ pub fn app_menus() -> Vec { MenuItem::action("Hide Others", super::HideOthers), #[cfg(target_os = "macos")] MenuItem::action("Show All", super::ShowAll), + MenuItem::separator(), MenuItem::action("Quit", Quit), ], },