From fdb7fc77948d3330b76b85199f6be492b918ec7c Mon Sep 17 00:00:00 2001 From: Luke Horwell Date: Tue, 25 Nov 2025 17:27:46 +0000 Subject: [PATCH] docs: Clarify that menus use non-native styles (#45033) * docs: Clarify menus use non-native styles Addresses #42262 * empty commit to kick ci * fix: make linter happy * Strip trailing space for lint --------- Co-authored-by: George Xu Co-authored-by: John Kleinschmidt Co-authored-by: Niklas Wenzel --- docs/api/menu.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/docs/api/menu.md b/docs/api/menu.md index 5f814b19af..7f4865ae67 100644 --- a/docs/api/menu.md +++ b/docs/api/menu.md @@ -2,10 +2,15 @@ ## Class: Menu -> Create native application menus and context menus. +> Create application menus and context menus. Process: [Main](../glossary.md#main-process) +The presentation of menus varies depending on the operating system: + +- Under Windows and Linux, menus are visually similar to Chromium. +- Under macOS, these will be native menus. + > [!TIP] > See also: [A detailed guide about how to implement menus in your application](../tutorial/menus.md).