From 8d108509c9b06ffa27bcd6807404bd772c876d5d Mon Sep 17 00:00:00 2001 From: lyswhut Date: Mon, 1 May 2023 16:04:41 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E9=BB=98=E8=AE=A4=E8=AE=BE?= =?UTF-8?q?=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/common/defaultSetting.ts | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/common/defaultSetting.ts b/src/common/defaultSetting.ts index 831eebb5..eb3240e1 100644 --- a/src/common/defaultSetting.ts +++ b/src/common/defaultSetting.ts @@ -2,6 +2,7 @@ import { join } from 'path' import { homedir } from 'os' const isMac = process.platform == 'darwin' +const isWin = process.platform == 'win32' const defaultSetting: LX.AppSetting = { version: '2.1.0', @@ -33,7 +34,7 @@ const defaultSetting: LX.AppSetting = { 'player.isShowLyricTranslation': false, 'player.isShowLyricRoma': false, 'player.isS2t': false, - 'player.isPlayLxlrc': !isMac, + 'player.isPlayLxlrc': isWin, 'player.isSavePlayTime': false, 'player.audioVisualization': false, 'player.waitPlayEndStop': true, @@ -71,10 +72,10 @@ const defaultSetting: LX.AppSetting = { // 'desktopLyric.style.fontWeight': false, 'desktopLyric.style.opacity': 95, 'desktopLyric.style.ellipsis': false, - 'desktopLyric.style.isZoomActiveLrc': true, + 'desktopLyric.style.isZoomActiveLrc': false, 'desktopLyric.style.isFontWeightFont': true, - 'desktopLyric.style.isFontWeightLine': false, - 'desktopLyric.style.isFontWeightExtended': false, + 'desktopLyric.style.isFontWeightLine': true, + 'desktopLyric.style.isFontWeightExtended': true, 'list.isClickPlayList': false, 'list.isShowSource': true,