Add a separator before Quit in the application menu (#30697)

Rob McBroom created

macOS applications should have a separator between “Show All” and “Quit”
in the application menu.

Change summary

crates/zed/src/zed/app_menus.rs | 1 +
1 file changed, 1 insertion(+)

Detailed changes

crates/zed/src/zed/app_menus.rs 🔗

@@ -44,6 +44,7 @@ pub fn app_menus() -> Vec<Menu> {
                 MenuItem::action("Hide Others", super::HideOthers),
                 #[cfg(target_os = "macos")]
                 MenuItem::action("Show All", super::ShowAll),
+                MenuItem::separator(),
                 MenuItem::action("Quit", Quit),
             ],
         },