diff --git a/lib/pages/setting/widgets/model.dart b/lib/pages/setting/widgets/model.dart index b6207dba7..5630e07b8 100644 --- a/lib/pages/setting/widgets/model.dart +++ b/lib/pages/setting/widgets/model.dart @@ -1842,7 +1842,7 @@ List get extraSettings => [ title: '显示高级弹幕', leading: Icon(MdiIcons.paletteAdvanced), setKey: SettingBoxKey.showSpecialDanmaku, - defaultVal: true, + defaultVal: false, ), SettingsModel( settingsType: SettingsType.sw1tch, diff --git a/lib/utils/storage.dart b/lib/utils/storage.dart index 1bbeda800..892c2df7e 100644 --- a/lib/utils/storage.dart +++ b/lib/utils/storage.dart @@ -343,7 +343,7 @@ class GStorage { GStorage.setting.get(SettingBoxKey.showVipDanmaku, defaultValue: true); static bool get showSpecialDanmaku => GStorage.setting - .get(SettingBoxKey.showSpecialDanmaku, defaultValue: true); + .get(SettingBoxKey.showSpecialDanmaku, defaultValue: false); static bool get mergeDanmaku => GStorage.setting.get(SettingBoxKey.mergeDanmaku, defaultValue: false);