Skip to content

Commit 8d10850

Browse files
committed
修改默认设置
1 parent d3cc630 commit 8d10850

1 file changed

Lines changed: 5 additions & 4 deletions

File tree

src/common/defaultSetting.ts

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import { join } from 'path'
22
import { homedir } from 'os'
33

44
const isMac = process.platform == 'darwin'
5+
const isWin = process.platform == 'win32'
56

67
const defaultSetting: LX.AppSetting = {
78
version: '2.1.0',
@@ -33,7 +34,7 @@ const defaultSetting: LX.AppSetting = {
3334
'player.isShowLyricTranslation': false,
3435
'player.isShowLyricRoma': false,
3536
'player.isS2t': false,
36-
'player.isPlayLxlrc': !isMac,
37+
'player.isPlayLxlrc': isWin,
3738
'player.isSavePlayTime': false,
3839
'player.audioVisualization': false,
3940
'player.waitPlayEndStop': true,
@@ -71,10 +72,10 @@ const defaultSetting: LX.AppSetting = {
7172
// 'desktopLyric.style.fontWeight': false,
7273
'desktopLyric.style.opacity': 95,
7374
'desktopLyric.style.ellipsis': false,
74-
'desktopLyric.style.isZoomActiveLrc': true,
75+
'desktopLyric.style.isZoomActiveLrc': false,
7576
'desktopLyric.style.isFontWeightFont': true,
76-
'desktopLyric.style.isFontWeightLine': false,
77-
'desktopLyric.style.isFontWeightExtended': false,
77+
'desktopLyric.style.isFontWeightLine': true,
78+
'desktopLyric.style.isFontWeightExtended': true,
7879

7980
'list.isClickPlayList': false,
8081
'list.isShowSource': true,

0 commit comments

Comments
 (0)