From b2c116c78a76d2874f5c31973f8a9cb167a3a25b Mon Sep 17 00:00:00 2001 From: Tom Butcher Date: Sun, 9 Aug 2026 15:58:26 +0100 Subject: [PATCH] Update Windows frame overhang constants for improved window rendering - Adjusted the CEF frame overhang constants to better align with native window dimensions, enhancing the accuracy of window positioning and rendering in the application. - Increased the width and height values to accommodate changes in window management. --- src/desktop/windows-work-area.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/desktop/windows-work-area.js b/src/desktop/windows-work-area.js index 908dac2..2714315 100644 --- a/src/desktop/windows-work-area.js +++ b/src/desktop/windows-work-area.js @@ -11,10 +11,10 @@ const WIN32_FRAME_OVERHANG_NATIVE = { height: 8 } const WIN32_FRAME_OVERHANG_CEF = { - x: -10, + x: -12, y: 0, - width: 20, - height: 10 + width: 24, + height: 12 } function getWin32FrameOverhang(window) {