From 4fa6449a4132657ea4d3f0cd4c37e96ca5e59103 Mon Sep 17 00:00:00 2001 From: 3gf8jv4dv <3gf8jv4dv@gmail.com> Date: Sat, 19 Apr 2025 19:10:18 +0800 Subject: [PATCH] Disable rounded corners for lyric window Ensure that the lyric window looks the same on Windows 11 as it does on other systems. Ref: https://github.com/electron/electron/issues/46468 --- src/main/modules/winLyric/main.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main/modules/winLyric/main.ts b/src/main/modules/winLyric/main.ts index 2b1faeb7..d4fed3c4 100644 --- a/src/main/modules/winLyric/main.ts +++ b/src/main/modules/winLyric/main.ts @@ -127,6 +127,7 @@ export const createWindow = () => { minimizable: false, maximizable: false, fullscreenable: false, + roundedCorners: false, show: false, alwaysOnTop: isAlwaysOnTop, skipTaskbar: !isShowTaskbar,