From ad7f65183104818cb7a12d1636fb0cb4017d8a39 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20Oberm=C3=BCller?= Date: Mon, 18 May 2026 16:54:02 +0200 Subject: [PATCH] feat(mac): expose native window options in menu bar --- apps/code/src/main/menu.ts | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/apps/code/src/main/menu.ts b/apps/code/src/main/menu.ts index 18b4a9fa6..63da89768 100644 --- a/apps/code/src/main/menu.ts +++ b/apps/code/src/main/menu.ts @@ -325,13 +325,5 @@ function buildViewMenu(): MenuItemConstructorOptions { } function buildWindowMenu(): MenuItemConstructorOptions { - return { - label: "Window", - submenu: [ - { role: "minimize" }, - { role: "zoom" }, - { type: "separator" }, - { role: "front" }, - ], - }; + return { role: "windowMenu" }; }