From 3ee2e482ceb4f003f70c47d62d17bf4427f32152 Mon Sep 17 00:00:00 2001 From: Luke Parker <10430890+Hona@users.noreply.github.com> Date: Sat, 29 Aug 2026 14:40:55 +1000 Subject: [PATCH] fix(app): preserve Windows panel top outlines (#46090) --- packages/app/src/shell/shell.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/app/src/shell/shell.tsx b/packages/app/src/shell/shell.tsx index a9a43fe52e5..c97c80be449 100644 --- a/packages/app/src/shell/shell.tsx +++ b/packages/app/src/shell/shell.tsx @@ -43,12 +43,12 @@ export default function Layout(props: ParentProps) { style={{ "padding-top": "env(safe-area-inset-top, 0px)", "padding-bottom": "env(safe-area-inset-bottom, 0px)", - // The native Windows titlebar already includes the gap above the content panels. + // Native Windows chrome supplies the gap; retain paint clearance for the panels' outer outlines. "--shell-top-inset": platform.platform === "desktop" && platform.os === "windows" && !(mobile() && preferences.general.mobileTitlebarPosition() === "bottom") - ? "0px" + ? "1px" : "8px", }} >