fix(electron): disable translucent sidebar by default (#12477)

fix AF-2662

<!-- This is an auto-generated comment: release notes by coderabbit.ai -->

## Summary by CodeRabbit

- **Chores**
  - Changed the default setting for blur background effect to be disabled for new users. Existing users' preferences remain unaffected.

<!-- end of auto-generated comment: release notes by coderabbit.ai -->
This commit is contained in:
pengx17
2025-05-27 02:58:26 +00:00
parent 1229ee134b
commit 502fb96f55

View File

@@ -28,7 +28,7 @@ const appSettingBaseAtom = atomWithStorage<AppSetting>(
{
clientBorder: BUILD_CONFIG.isElectron && !environment.isWindows,
windowFrameStyle: 'frameless',
enableBlurBackground: true,
enableBlurBackground: false,
enableNoisyBackground: true,
autoCheckUpdate: true,
autoDownloadUpdate: true,