From f1039d3fc2ce0a391fd2d57f4e9600837f386310 Mon Sep 17 00:00:00 2001 From: Michael Telatynski <7t3chguy@gmail.com> Date: Fri, 5 Sep 2025 10:17:21 +0100 Subject: [PATCH] Ensure dropdown is not a drag element on macOS (#2540) --- src/macos-titlebar.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/macos-titlebar.ts b/src/macos-titlebar.ts index 62d884b6f7..072e6ededf 100644 --- a/src/macos-titlebar.ts +++ b/src/macos-titlebar.ts @@ -53,7 +53,8 @@ export function setupMacosTitleBar(window: BrowserWindow): void { } /* Exclude the main content elements from being drag handles */ .mx_AuthPage .mx_AuthPage_modalBlur, - .mx_AuthPage .mx_AuthFooter > * { + .mx_AuthPage .mx_AuthFooter > *, + .mx_AuthPage .mx_Dropdown_menu { -webkit-app-region: no-drag; }